mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: Introduce Ignore user (#7072)
This commit is contained in:
committed by
Régis Hanol
parent
5c476f639c
commit
986cc8a0fb
20
app/models/ignored_user.rb
Normal file
20
app/models/ignored_user.rb
Normal file
@@ -0,0 +1,20 @@
|
||||
class IgnoredUser < ActiveRecord::Base
|
||||
belongs_to :user
|
||||
belongs_to :ignored_user, class_name: "User"
|
||||
end
|
||||
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: ignored_users
|
||||
#
|
||||
# id :integer 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
|
||||
#
|
||||
# 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
|
||||
#
|
||||
Reference in New Issue
Block a user