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