You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
491 B
21 lines
491 B
# 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
|
|
|