From c4dfbedc2c71ec1de9731c2be9d2dc37b5182308 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Thu, 20 Aug 2020 09:56:09 +0200 Subject: [PATCH] Add settings API endpoint and settings app endpoint to example --- config/proxy-example-migration.json | 10 +++++++++- config/proxy-example.json | 8 ++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/config/proxy-example-migration.json b/config/proxy-example-migration.json index 04760b75a7..d2ee433284 100644 --- a/config/proxy-example-migration.json +++ b/config/proxy-example-migration.json @@ -68,7 +68,15 @@ { "endpoint": "/accounts.js", "backend": "http://localhost:9181" - } + }, + { + "endpoint": "/api/v0/settings", + "backend": "http://localhost:9190" + }, + { + "endpoint": "/settings.js", + "backend": "http://localhost:9190" + } ] }, { diff --git a/config/proxy-example.json b/config/proxy-example.json index 28fd674deb..68c2fe3083 100644 --- a/config/proxy-example.json +++ b/config/proxy-example.json @@ -71,6 +71,14 @@ { "endpoint": "/accounts.js", "backend": "http://localhost:9181" + }, + { + "endpoint": "/api/v0/settings", + "backend": "http://localhost:9190" + }, + { + "endpoint": "/settings.js", + "backend": "http://localhost:9190" } ] },