mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-22 22:06:43 +00:00
11 lines
266 B
Ruby
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
|