mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-23 14:27:21 +00:00
15 lines
288 B
Ruby
15 lines
288 B
Ruby
module SwaggerRails
|
|
class SwaggerUiController < ApplicationController
|
|
|
|
def index
|
|
@discovery_paths = Hash[
|
|
SwaggerRails.swagger_docs.map do |name, path|
|
|
[ name, "#{root_path}#{path}" ]
|
|
end
|
|
]
|
|
|
|
render :index, layout: false
|
|
end
|
|
end
|
|
end
|