openstreetmap-website/app/models/user_token.rb
Andy Allan a41d500b9f Create an ApplicationRecord for models to inherit from
This is the default for Rails 5+, and also paves the way for
multiple database support.
2019-11-27 11:50:48 +01:00

36 lines
677 B
Ruby

# == Schema Information
#
# Table name: user_tokens
#
# id :bigint(8) not null, primary key
# user_id :bigint(8) not null
# token :string not null
# expiry :datetime not null
# referer :text
#
# Indexes
#
# user_tokens_token_idx (token) UNIQUE
# user_tokens_user_id_idx (user_id)
#
# Foreign Keys
#
# user_tokens_user_id_fkey (user_id => users.id)
#
class UserToken < ApplicationRecord
belongs_to :user
after_initialize :set_defaults
def expired?
expiry < Time.now
end
private
def set_defaults
self.token = OSM.make_token if token.blank?
self.expiry = 1.week.from_now if expiry.blank?
end
end