mirror of https://github.com/docusealco/docuseal
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							138 lines
						
					
					
						
							6.7 KiB
						
					
					
				
			
		
		
	
	
							138 lines
						
					
					
						
							6.7 KiB
						
					
					
				| <div class="block w-full md:w-52 flex-none">
 | |
|   <menu-active>
 | |
|     <ul class="menu px-0">
 | |
|       <li class="menu-title py-0 !bg-transparent mb-3 -mt-5"><a href="<%= '/' %>" class="!bg-transparent !text-neutral font-medium">← Back</a></li>
 | |
|       <li class="menu-title py-0 !bg-transparent"><span class="!bg-transparent">Settings</span></li>
 | |
|       <li></li>
 | |
|       <li>
 | |
|         <%= link_to 'Profile', settings_profile_index_path, class: 'text-base hover:bg-base-300' %>
 | |
|       </li>
 | |
|       <li>
 | |
|         <%= link_to 'Account', settings_account_path, class: 'text-base hover:bg-base-300' %>
 | |
|       </li>
 | |
|       <% unless Docuseal.multitenant? %>
 | |
|         <% if can?(:read, EncryptedConfig.new(key: EncryptedConfig::EMAIL_SMTP_KEY, account: current_account)) && ENV['SMTP_ADDRESS'].blank? &&  true_user == current_user %>
 | |
|           <li>
 | |
|             <%= link_to 'Email', settings_email_index_path, class: 'text-base hover:bg-base-300' %>
 | |
|           </li>
 | |
|         <% end %>
 | |
|         <% if can?(:read, EncryptedConfig.new(key: EncryptedConfig::FILES_STORAGE_KEY, account: current_account)) && true_user == current_user %>
 | |
|           <li>
 | |
|             <%= link_to 'Storage', settings_storage_index_path, class: 'text-base hover:bg-base-300' %>
 | |
|           </li>
 | |
|         <% end %>
 | |
|         <% if can?(:read, EncryptedConfig.new(key: 'submitter_invitation_sms', account: current_account)) && true_user == current_user %>
 | |
|           <li>
 | |
|             <%= link_to 'SMS', settings_sms_path, class: 'text-base hover:bg-base-300' %>
 | |
|           </li>
 | |
|         <% end %>
 | |
|       <% end %>
 | |
|       <% if can?(:read, AccountConfig) %>
 | |
|         <li>
 | |
|           <%= link_to 'Notifications', settings_notifications_path, class: 'text-base hover:bg-base-300' %>
 | |
|         </li>
 | |
|       <% end %>
 | |
|       <% if can?(:read, EncryptedConfig.new(key: EncryptedConfig::ESIGN_CERTS_KEY, account: current_account)) %>
 | |
|         <li>
 | |
|           <%= link_to 'E-Signature', settings_esign_path, class: 'text-base hover:bg-base-300' %>
 | |
|         </li>
 | |
|       <% end %>
 | |
|       <% if can?(:read, AccountConfig) %>
 | |
|         <li>
 | |
|           <%= link_to 'Personalization', settings_personalization_path, class: 'text-base hover:bg-base-300' %>
 | |
|         </li>
 | |
|       <% end %>
 | |
|       <% if can?(:read, User) %>
 | |
|         <li>
 | |
|           <%= link_to 'Users', settings_users_path, class: 'text-base hover:bg-base-300' %>
 | |
|         </li>
 | |
|       <% end %>
 | |
|       <%= render 'shared/settings_nav_extra' %>
 | |
|       <% if Docuseal.demo? || !Docuseal.multitenant? %>
 | |
|         <% if can?(:read, AccessToken) %>
 | |
|           <li>
 | |
|             <%= link_to 'API', settings_api_index_path, class: 'text-base hover:bg-base-300' %>
 | |
|           </li>
 | |
|         <% end %>
 | |
|         <% if can?(:read, EncryptedConfig.new(key: EncryptedConfig::WEBHOOK_URL_KEY, account: current_account)) %>
 | |
|           <li>
 | |
|             <%= link_to 'Webhooks', settings_webhooks_path, class: 'text-base hover:bg-base-300' %>
 | |
|           </li>
 | |
|         <% end %>
 | |
|       <% end %>
 | |
|       <% if !Docuseal.demo? && can?(:manage, EncryptedConfig) && (current_user != true_user || !current_account.linked_account_account) %>
 | |
|         <li>
 | |
|           <%= link_to Docuseal.multitenant? ? console_redirect_index_path(redir: "#{Docuseal::CONSOLE_URL}/plans") : "#{Docuseal::CLOUD_URL}/sign_up?#{{ redir: "#{Docuseal::CONSOLE_URL}/on_premise" }.to_query}", class: 'text-base hover:bg-base-300', data: { prefetch: false } do %>
 | |
|             Plans
 | |
|             <span class="badge badge-warning">New</span>
 | |
|           <% end %>
 | |
|         </li>
 | |
|       <% end %>
 | |
|       <% if !Docuseal.demo? && can?(:manage, EncryptedConfig) && (current_user != true_user || !current_account.testing?) %>
 | |
|         <li>
 | |
|           <%= link_to Docuseal.multitenant? ? console_redirect_index_path(redir: "#{Docuseal::CONSOLE_URL}/api") : "#{Docuseal::CONSOLE_URL}/on_premise", class: 'text-base hover:bg-base-300', data: { prefetch: false } do %>
 | |
|             <% if Docuseal.multitenant? %> API <% else %> Console <% end %>
 | |
|           <% end %>
 | |
|         </li>
 | |
|         <% if Docuseal.multitenant? %>
 | |
|           <li>
 | |
|             <%= link_to console_redirect_index_path(redir: "#{Docuseal::CONSOLE_URL}/embedding/form"), class: 'text-base hover:bg-base-300', data: { prefetch: false } do %>
 | |
|               Embedding
 | |
|             <% end %>
 | |
|           </li>
 | |
|         <% end %>
 | |
|         <% if (!Docuseal.multitenant? || can?(:manage, :saml_sso)) && can?(:read, EncryptedConfig.new(key: 'saml_configs', account: current_account)) && true_user == current_user %>
 | |
|           <li>
 | |
|             <%= link_to 'SSO', settings_sso_index_path, class: 'text-base hover:bg-base-300' %>
 | |
|           </li>
 | |
|         <% end %>
 | |
|         <%= render 'shared/settings_nav_extra2' %>
 | |
|         <% if (can?(:manage, EncryptedConfig) && current_user == true_user) || (current_user != true_user && current_account.testing?) %>
 | |
|           <li>
 | |
|             <%= form_for '', url: testing_account_path, method: current_account.testing? ? :delete : :get, html: { class: 'flex w-full' } do |f| %>
 | |
|               <label class="flex items-center text-base hover:bg-base-300 w-full justify-between" for="testing_toggle">
 | |
|                 <span class="mr-2 w-full">
 | |
|                   Test Environment
 | |
|                 </span>
 | |
|                 <%= f.check_box :testing_toggle, class: 'toggle toggle-sm', checked: current_account.testing?, onchange: 'this.form.requestSubmit()' %>
 | |
|               </label>
 | |
|             <% end %>
 | |
|           </li>
 | |
|         <% end %>
 | |
|       <% end %>
 | |
|     </ul>
 | |
|   </menu-active>
 | |
|   <% if Docuseal.multitenant? || cannot?(:manage, :tenants) %>
 | |
|     <div class="mx-4 border-t border-base-300 hidden md:block">
 | |
|       <div class="text-sm mt-3">
 | |
|         Need help? Ask a question:
 | |
|       </div>
 | |
|       <div class="flex mt-3 space-x-3">
 | |
|         <div class="tooltip" data-tip="GitHub">
 | |
|           <a href="<%= Docuseal::GITHUB_URL %>" target="_blank" class="btn btn-circle btn-primary btn-md">
 | |
|             <%= svg_icon('brand_github', class: 'w-8 h-8') %>
 | |
|           </a>
 | |
|         </div>
 | |
|         <div class="tooltip" data-tip="Discord Community">
 | |
|           <a href="<%= Docuseal::DISCORD_URL %>" target="_blank" class="btn btn-circle btn-primary btn-md">
 | |
|             <%= svg_icon('brand_discord', class: 'w-8 h-8') %>
 | |
|           </a>
 | |
|         </div>
 | |
|         <div class="tooltip" data-tip="Twitter">
 | |
|           <a href="<%= Docuseal::TWITTER_URL %>" target="_blank" class="btn btn-circle btn-primary btn-md">
 | |
|             <%= svg_icon('brand_twitter', class: 'w-8 h-8') %>
 | |
|           </a>
 | |
|         </div>
 | |
|       </div>
 | |
|       <a href="mailto:<%= Docuseal::SUPPORT_EMAIL %>" target="_blank" class="w-full block mt-4 underline text-center">
 | |
|         <%= Docuseal::SUPPORT_EMAIL %>
 | |
|       </a>
 | |
|       <% if Docuseal.version.present? %>
 | |
|         <a href="https://github.com/docusealco/docuseal/releases" target="_blank" class="badge badge-outline text-xs block mx-auto mt-4">
 | |
|           v<%= Docuseal.version %>
 | |
|         </a>
 | |
|       <% end %>
 | |
|     </div>
 | |
|   <% end %>
 | |
| </div>
 |