2020-03-05 20:13:12 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: agent_bots
|
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
# description :string
|
|
|
|
# name :string
|
|
|
|
# outgoing_url :string
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class AgentBot < ApplicationRecord
|
2020-03-10 18:32:15 +00:00
|
|
|
include AccessTokenable
|
2020-03-05 20:13:12 +00:00
|
|
|
include Avatarable
|
2020-03-10 18:32:15 +00:00
|
|
|
|
2020-03-05 20:13:12 +00:00
|
|
|
has_many :agent_bot_inboxes, dependent: :destroy
|
|
|
|
has_many :inboxes, through: :agent_bot_inboxes
|
|
|
|
end
|