2017-05-31 19:36:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 18:09:25 +00:00
|
|
|
class Api::V1::Accounts::CredentialsController < Api::BaseController
|
2017-08-20 22:41:08 +00:00
|
|
|
before_action -> { doorkeeper_authorize! :read }, except: [:update]
|
2017-05-31 19:36:24 +00:00
|
|
|
before_action -> { doorkeeper_authorize! :write }, only: [:update]
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
def show
|
|
|
|
@account = current_account
|
2017-07-10 01:29:34 +00:00
|
|
|
render json: @account, serializer: REST::CredentialAccountSerializer
|
2017-05-31 19:36:24 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@account = current_account
|
2017-08-26 10:40:03 +00:00
|
|
|
UpdateAccountService.new.call(@account, account_params, raise_error: true)
|
2017-08-12 22:44:41 +00:00
|
|
|
ActivityPub::UpdateDistributionWorker.perform_async(@account.id)
|
2017-07-10 01:29:34 +00:00
|
|
|
render json: @account, serializer: REST::CredentialAccountSerializer
|
2017-05-31 19:36:24 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_params
|
|
|
|
params.permit(:display_name, :note, :avatar, :header)
|
|
|
|
end
|
|
|
|
end
|