Chatwoot/app/controllers/api/v1/agent_bots_controller.rb

8 lines
151 B
Ruby
Raw Normal View History

class Api::V1::AgentBotsController < Api::BaseController
skip_before_action :authenticate_user!
def index
render json: AgentBot.all
end
end