mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 11:21:13 +01:00
25 lines
765 B
Ruby
25 lines
765 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::Accounts::CredentialsController < Api::BaseController
|
|
before_action -> { doorkeeper_authorize! :read }, except: [:update]
|
|
before_action -> { doorkeeper_authorize! :write }, only: [:update]
|
|
before_action :require_user!
|
|
|
|
def show
|
|
@account = current_account
|
|
render json: @account, serializer: REST::CredentialAccountSerializer
|
|
end
|
|
|
|
def update
|
|
@account = current_account
|
|
UpdateAccountService.new.call(@account, account_params, raise_error: true)
|
|
ActivityPub::UpdateDistributionWorker.perform_async(@account.id)
|
|
render json: @account, serializer: REST::CredentialAccountSerializer
|
|
end
|
|
|
|
private
|
|
|
|
def account_params
|
|
params.permit(:display_name, :note, :avatar, :header)
|
|
end
|
|
end
|