mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
5140ec9acf
- IgnoredUser records should all now have an expiring_at value. This commit enforces that in the DB, and fixes any corrupt rows - Changes to the ignored user list are now handled by the `/u/{username}/notification_level` endpoint. This allows setting expiration dates on the ignore. This commit removes the old logic for saving a list of usernames in the user preferences. - Many specs were calling `IgnoredUser.create`. This commit changes them to use `Fabricate(:ignored_user)` for consistency
27 lines
732 B
Ruby
27 lines
732 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IgnoredUser < ActiveRecord::Base
|
|
validates :expiring_at, presence: true
|
|
|
|
belongs_to :user
|
|
belongs_to :ignored_user, class_name: "User"
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: ignored_users
|
|
#
|
|
# id :bigint not null, primary key
|
|
# user_id :integer not null
|
|
# ignored_user_id :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# summarized_at :datetime
|
|
# expiring_at :datetime
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_ignored_users_on_ignored_user_id_and_user_id (ignored_user_id,user_id) UNIQUE
|
|
# index_ignored_users_on_user_id_and_ignored_user_id (user_id,ignored_user_id) UNIQUE
|
|
#
|