The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

34 lines
669 B

  1. # frozen_string_literal: true
  2. class Settings::ProfilesController < ApplicationController
  3. layout 'auth'
  4. before_action :authenticate_user!
  5. before_action :set_account
  6. include ObfuscateFilename
  7. obfuscate_filename [:account, :avatar]
  8. obfuscate_filename [:account, :header]
  9. def show
  10. end
  11. def update
  12. if @account.update(account_params)
  13. redirect_to settings_profile_path, notice: I18n.t('generic.changes_saved_msg')
  14. else
  15. render action: :show
  16. end
  17. end
  18. private
  19. def account_params
  20. params.require(:account).permit(:display_name, :note, :avatar, :header)
  21. end
  22. def set_account
  23. @account = current_user.account
  24. end
  25. end