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