Chatwoot/app/models/channel/web_widget.rb

9 lines
186 B
Ruby
Raw Normal View History

module Channel
class WebWidget < ApplicationRecord
self.table_name = 'channel_web_widgets'
belongs_to :account
has_one :inbox, as: :channel, dependent: :destroy
end
end