2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-13 20:28:49 -04:00
|
|
|
class Settings::ProfilesController < ApplicationController
|
2016-12-22 15:34:19 -05:00
|
|
|
include ObfuscateFilename
|
|
|
|
|
2017-01-27 21:56:10 -05:00
|
|
|
layout 'admin'
|
2016-09-29 15:28:21 -04:00
|
|
|
|
2016-03-12 14:47:22 -05:00
|
|
|
before_action :authenticate_user!
|
|
|
|
before_action :set_account
|
|
|
|
|
2016-11-23 18:31:38 -05:00
|
|
|
obfuscate_filename [:account, :avatar]
|
|
|
|
obfuscate_filename [:account, :header]
|
|
|
|
|
2016-12-06 12:03:30 -05:00
|
|
|
def show; end
|
2016-03-12 14:47:22 -05:00
|
|
|
|
|
|
|
def update
|
|
|
|
if @account.update(account_params)
|
2016-11-15 17:02:57 -05:00
|
|
|
redirect_to settings_profile_path, notice: I18n.t('generic.changes_saved_msg')
|
2016-03-12 14:47:22 -05:00
|
|
|
else
|
2017-04-19 09:37:42 -04:00
|
|
|
render :show
|
2016-03-12 14:47:22 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_params
|
2016-12-22 15:34:19 -05:00
|
|
|
params.require(:account).permit(:display_name, :note, :avatar, :header, :locked)
|
2016-03-12 14:47:22 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = current_user.account
|
|
|
|
end
|
|
|
|
end
|