about summary refs log tree commit diff
path: root/app/controllers/activitypub/claims_controller.rb
blob: 5009a9f0540012d607c0da6a7c9c3195424dba5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class ActivityPub::ClaimsController < ActivityPub::BaseController
  include SignatureVerification
  include AccountOwnedConcern

  #skip_before_action :authenticate_user!

  before_action :require_signature!
  before_action :set_claim_result

  def create
    render json: @claim_result, serializer: ActivityPub::OneTimeKeySerializer
  end

  private

  def set_claim_result
    @claim_result = ::Keys::ClaimService.new.call(@account.id, params[:id])
  end
end