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