mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:43:19 +08:00
8 lines
179 B
Ruby
8 lines
179 B
Ruby
class TopicAllowedUser < ActiveRecord::Base
|
|
belongs_to :topic
|
|
belongs_to :user
|
|
attr_accessible :topic_id, :user_id
|
|
|
|
validates_uniqueness_of :topic_id, scope: :user_id
|
|
end
|