mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-25 21:09:04 +08:00
9 lines
192 B
Ruby
9 lines
192 B
Ruby
class Api::V1::AgentBotsController < Api::BaseController
|
|
skip_before_action :authenticate_user!
|
|
skip_before_action :check_subscription
|
|
|
|
def index
|
|
render json: AgentBot.all
|
|
end
|
|
end
|