mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-08-30 00:59:13 +00:00
6 lines
151 B
Ruby
6 lines
151 B
Ruby
class ChatRoom < ApplicationRecord
|
|
has_many :chat_room_participations
|
|
has_many :users, through: :chat_room_participations
|
|
has_many :requests
|
|
end
|