eBooru/app/models/forum_topic_visit.rb
Earlopain fc7d84affd
[RuboCop] Enable Style/FrozenStringLiteralComment
This reduces allocations on the posts page by about 5%, from basic testing
2024-02-25 18:15:55 +01:00

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