4 lines
117 B
Ruby
4 lines
117 B
Ruby
|
class Channel::Widget < ApplicationRecord
|
||
|
belongs_to :account
|
||
|
has_one :inbox, as: :channel, dependent: :destroy
|
||
|
end
|