mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
The capabilities and documentation for the DFC API are bigger. And since it's in active development, people want to check the DFC API more frequently. They needed to find the switch to select the DFC API in the top right corner but now it's displayed straight away.
19 lines
788 B
Ruby
19 lines
788 B
Ruby
# frozen_string_literal: true
|
|
|
|
Rswag::Ui.configure do |config|
|
|
# List the Swagger endpoints that you want to be documented through the
|
|
# swagger-ui. The first parameter is the path (absolute or relative to the UI
|
|
# host) to the corresponding endpoint and the second is a title that will be
|
|
# displayed in the document selector.
|
|
# NOTE: If you're using rspec-api to expose Swagger files
|
|
# (under openapi_root) as JSON or YAML endpoints, then the list below should
|
|
# correspond to the relative paths for those endpoints.
|
|
|
|
config.openapi_endpoint 'dfc.yaml', 'OFN DFC API Docs'
|
|
config.openapi_endpoint 'v1.yaml', 'API V1 Docs'
|
|
|
|
# Add Basic Auth in case your API is private
|
|
# config.basic_auth_enabled = true
|
|
# config.basic_auth_credentials 'username', 'password'
|
|
end
|