Merge pull request #93 from owncloud/add-settings-endpoints

Add settings endpoints
This commit is contained in:
Benedikt Kulmann
2020-08-27 16:20:02 +02:00
committed by GitHub
3 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
Bugfix: Add settings API and app endpoints to example config
We had the ocis-settings API and app endpoints in the builtin config already, but they were missing in the example
config. Added them for consistency.
https://github.com/owncloud/ocis-proxy/pull/93

View File

@@ -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"
}
]
},
{

View File

@@ -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"
}
]
},