5 lines
84 B
Ruby
5 lines
84 B
Ruby
|
class Channel < ApplicationRecord
|
||
|
belongs_to :inbox
|
||
|
has_many :conversations
|
||
|
end
|