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