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