10 lines
293 B
Ruby
10 lines
293 B
Ruby
class ForumTopicVisit < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :forum_topic
|
|
attr_accessible :user_id, :user, :forum_topic_id, :forum_topic, :last_read_at
|
|
|
|
def self.prune!(user)
|
|
where("user_id = ? and last_read_at < ?", user.id, user.last_forum_read_at).delete_all
|
|
end
|
|
end
|