mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-22 22:06:43 +00:00
15 lines
308 B
Ruby
15 lines
308 B
Ruby
module SwaggerRails
|
|
class SwaggerUiController < ApplicationController
|
|
|
|
def index
|
|
@discovery_paths = Hash[
|
|
SwaggerRails.config.swagger_docs.map do |path, doc|
|
|
[ "#{root_path}#{path}", doc[:info][:title] ]
|
|
end
|
|
]
|
|
|
|
render :index, layout: false
|
|
end
|
|
end
|
|
end
|