rswag/app/controllers/swagger_rails/swagger_ui_controller.rb
2015-09-22 15:12:28 -07:00

10 lines
183 B
Ruby

module SwaggerRails
class SwaggerUiController < ApplicationController
def index
@discovery_path = swagger_path('v1')
render :index, layout: false
end
end
end