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