rswag/lib/swagger_rails/configuration.rb

11 lines
266 B
Ruby

module SwaggerRails
class Configuration
attr_accessor :swagger_root, :swagger_filter
def resolve_swagger_root(env)
path_params = env['action_dispatch.request.path_parameters'] || {}
path_params[:swagger_root] || swagger_root
end
end
end