mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-22 22:06:43 +00:00
10 lines
210 B
Ruby
10 lines
210 B
Ruby
module SwaggerRails
|
|
class SwaggerUiController < ApplicationController
|
|
|
|
def index
|
|
@discovery_path = swagger_path(SwaggerRails.target_api_version)
|
|
render :index, layout: false
|
|
end
|
|
end
|
|
end
|