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