Methods

Attributes

[R] key
[R] signature
[R] timestamp
[R] token

Class Public methods

new(key:, timestamp:, token:, signature:)

📝 Source code
# File actionmailbox/app/controllers/action_mailbox/ingresses/mailgun/inbound_emails_controller.rb, line 87
        def initialize(key:, timestamp:, token:, signature:)
          @key, @timestamp, @token, @signature = key, Integer(timestamp), token, signature
        end
🔎 See on GitHub

Instance Public methods

authenticated?()

📝 Source code
# File actionmailbox/app/controllers/action_mailbox/ingresses/mailgun/inbound_emails_controller.rb, line 91
        def authenticated?
          signed? && recent?
        end
🔎 See on GitHub