mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:54:23 +08:00
b58867b6e9
Includes support for flags, reviewable users and queued posts, with REST API backwards compatibility. Co-Authored-By: romanrizzi <romanalejandro@gmail.com> Co-Authored-By: jjaffeux <j.jaffeux@gmail.com>
21 lines
601 B
Ruby
21 lines
601 B
Ruby
class IgnoredUser < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :ignored_user, class_name: "User"
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: ignored_users
|
|
#
|
|
# id :bigint(8) 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
|
|
#
|