This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-31 12:36:24 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::V1::Accounts::CredentialsController < Api::BaseController
|
2017-05-31 12:36:24 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :write }, only: [:update]
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
def show
|
|
|
|
@account = current_account
|
2017-07-09 18:29:34 -07:00
|
|
|
render json: @account, serializer: REST::CredentialAccountSerializer
|
2017-05-31 12:36:24 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@account = current_account
|
2017-08-12 15:44:41 -07:00
|
|
|
@account.update!(account_params)
|
|
|
|
ActivityPub::UpdateDistributionWorker.perform_async(@account.id)
|
2017-07-09 18:29:34 -07:00
|
|
|
render json: @account, serializer: REST::CredentialAccountSerializer
|
2017-05-31 12:36:24 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_params
|
|
|
|
params.permit(:display_name, :note, :avatar, :header)
|
|
|
|
end
|
|
|
|
end
|