跳到內容 跳到搜尋
方法
A
N

屬性

[R] 金鑰
[R] 簽章
[R] 時間戳記
[R] 權杖

類別公開方法

new(金鑰:, 時間戳記:, 權杖:, 簽章:)

# 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

實例公開方法

authenticated?()

# File actionmailbox/app/controllers/action_mailbox/ingresses/mailgun/inbound_emails_controller.rb, line 91
def authenticated?
  signed? && recent?
end