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.
		
		
		
		
		
			
		
			
				
					
					
						
							37 lines
						
					
					
						
							873 B
						
					
					
				
			
		
		
	
	
							37 lines
						
					
					
						
							873 B
						
					
					
				| # frozen_string_literal: true
 | |
| 
 | |
| class ProfileController < ApplicationController
 | |
|   before_action do
 | |
|     authorize!(:manage, current_user)
 | |
|   end
 | |
| 
 | |
|   def index; end
 | |
| 
 | |
|   def update_contact
 | |
|     if current_user.update(contact_params)
 | |
|       redirect_to settings_profile_index_path, notice: I18n.t('contact_information_has_been_update')
 | |
|     else
 | |
|       render :index, status: :unprocessable_entity
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def update_password
 | |
|     if current_user.update(password_params)
 | |
|       bypass_sign_in(current_user)
 | |
|       redirect_to settings_profile_index_path, notice: I18n.t('password_has_been_changed')
 | |
|     else
 | |
|       render :index, status: :unprocessable_entity
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def contact_params
 | |
|     params.require(:user).permit(:first_name, :last_name, :email)
 | |
|   end
 | |
| 
 | |
|   def password_params
 | |
|     params.require(:user).permit(:password, :password_confirmation)
 | |
|   end
 | |
| end
 |