forked from e621ng/e621ng
11 lines
244 B
Ruby
11 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ForumTopicVisit < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :forum_topic
|
|
|
|
def self.prune!(user)
|
|
where("user_id = ? and last_read_at < ?", user.id, user.last_forum_read_at).delete_all
|
|
end
|
|
end
|