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