The code powering m.abunchtell.com https://m.abunchtell.com
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

12 linhas
196 B

  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