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