Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Add settings endpoints #93

Merged
merged 3 commits into from
Aug 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog/unreleased/settings-in-example-config.md
Original file line number Diff line number Diff line change
@@ -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
10 changes: 9 additions & 1 deletion config/proxy-example-migration.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
},
{
Expand Down
8 changes: 8 additions & 0 deletions config/proxy-example.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
},
Expand Down