rswag/rswag-ui/app/controllers/rswag/ui/home_controller.rb

12 lines
221 B
Ruby

module Rswag
module Ui
class HomeController < ActionController::Base
def index
@swagger_endpoints = Rswag::Ui.config.swagger_endpoints
render :index, layout: false
end
end
end
end