Chatwoot/app/models/agent_bot.rb
Sojan Jose a5b1e2b650
Feature: Access tokens for API access (#604)
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
2020-03-11 00:02:15 +05:30

19 lines
457 B
Ruby

# == 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
include AccessTokenable
include Avatarable
has_many :agent_bot_inboxes, dependent: :destroy
has_many :inboxes, through: :agent_bot_inboxes
end