mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
f39e7fe81d
This is a try to simplify logic around dismiss new topics to have one solution to work in all places - dismiss all-new, dismiss new in a specific category or even in a specific tag.
28 lines
615 B
Ruby
28 lines
615 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DismissedTopicUser < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :topic
|
|
|
|
def self.lookup_for(user, topics)
|
|
return [] if user.blank? || topics.blank?
|
|
|
|
topic_ids = topics.map(&:id)
|
|
DismissedTopicUser.where(topic_id: topic_ids, user_id: user.id).pluck(:topic_id)
|
|
end
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: dismissed_topic_users
|
|
#
|
|
# id :bigint not null, primary key
|
|
# user_id :integer
|
|
# topic_id :integer
|
|
# created_at :datetime
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_dismissed_topic_users_on_user_id_and_topic_id (user_id,topic_id) UNIQUE
|
|
#
|