方法
- A
- N
Attributes
| [R] | 键 (key) | |
| [R] | signature | |
| [R] | timestamp | |
| [R] | token |
类公共方法
new(key:, timestamp:, token:, signature:) 链接
来源: 显示 | 在 GitHub 上
# 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?() 链接
来源: 显示 | 在 GitHub 上
# File actionmailbox/app/controllers/action_mailbox/ingresses/mailgun/inbound_emails_controller.rb, line 91 def authenticated? signed? && recent? end