From 3425be4deddd9915219eef9f2d38c07c6b725046 Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Thu, 11 Jan 2024 15:14:10 +1100 Subject: [PATCH] Show DFC API first in documentation 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. --- config/initializers/rswag_ui.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initializers/rswag_ui.rb b/config/initializers/rswag_ui.rb index 2dfa56c504..e8f8d4096b 100644 --- a/config/initializers/rswag_ui.rb +++ b/config/initializers/rswag_ui.rb @@ -9,8 +9,8 @@ Rswag::Ui.configure do |config| # (under openapi_root) as JSON or YAML endpoints, then the list below should # correspond to the relative paths for those endpoints. - config.openapi_endpoint 'v1.yaml', 'API V1 Docs' 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