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