mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
92e371f0b3
Allow user to mute all notifications generated by specific users
5 lines
105 B
Ruby
5 lines
105 B
Ruby
class MutedUser < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :muted_user, class_name: 'User'
|
|
end
|