rswag/app/controllers/swagger_rails/swagger_ui_controller.rb
2015-09-17 12:02:41 -07:00

10 lines
167 B
Ruby

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