52d28105e4
- remove subscription model - remove billing-related code
7 lines
151 B
Ruby
7 lines
151 B
Ruby
class Api::V1::AgentBotsController < Api::BaseController
|
|
skip_before_action :authenticate_user!
|
|
|
|
def index
|
|
render json: AgentBot.all
|
|
end
|
|
end
|