mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
8 lines
151 B
Ruby
8 lines
151 B
Ruby
class Api::V1::AgentBotsController < Api::BaseController
|
|
skip_before_action :authenticate_user!
|
|
|
|
def index
|
|
render json: AgentBot.all
|
|
end
|
|
end
|