7
0
Ответвление 0
bastodon/app/controllers/concerns/signature_authentication.rb

11 строки
196 Б
Ruby

# frozen_string_literal: true
module SignatureAuthentication
extend ActiveSupport::Concern
include SignatureVerification
def current_account
super || signed_request_account
end
end