rswag/app/controllers/swagger_rails/swagger_ui_controller.rb
2015-12-10 18:24:35 -08:00

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