logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

signature_authentication.rb (196B)


  1. # frozen_string_literal: true
  2. module SignatureAuthentication
  3. extend ActiveSupport::Concern
  4. include SignatureVerification
  5. def current_account
  6. super || signed_request_account
  7. end
  8. end