Class: ApiKey
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- ApiKey
- Defined in:
- lib/generators/templates/api_key.rb
Instance Method Summary collapse
Instance Method Details
#expired? ⇒ Boolean
5 6 7 |
# File 'lib/generators/templates/api_key.rb', line 5 def expired? expired_at < Time.now.utc end |
#renew! ⇒ Object
9 10 11 12 |
# File 'lib/generators/templates/api_key.rb', line 9 def renew! renew save! end |