2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-14 00:28:49 +00:00
|
|
|
class Settings::ProfilesController < ApplicationController
|
2016-09-25 13:48:20 +00:00
|
|
|
layout 'auth'
|
2016-09-29 19:28:21 +00:00
|
|
|
|
2016-03-12 19:47:22 +00:00
|
|
|
before_action :authenticate_user!
|
|
|
|
before_action :set_account
|
|
|
|
|
2016-11-23 23:31:38 +00:00
|
|
|
include ObfuscateFilename
|
|
|
|
obfuscate_filename [:account, :avatar]
|
|
|
|
obfuscate_filename [:account, :header]
|
|
|
|
|
2016-03-12 19:47:22 +00:00
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if @account.update(account_params)
|
2016-11-15 22:02:57 +00:00
|
|
|
redirect_to settings_profile_path, notice: I18n.t('generic.changes_saved_msg')
|
2016-03-12 19:47:22 +00:00
|
|
|
else
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_params
|
2016-11-30 20:32:11 +00:00
|
|
|
params.require(:account).permit(:display_name, :note, :avatar, :header)
|
2016-03-12 19:47:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = current_user.account
|
|
|
|
end
|
|
|
|
end
|