mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-22 22:06:43 +00:00
12 lines
221 B
Ruby
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
|