Merge pull request #83 from owncloud/fix-external-app-urls

Fix external app urls
This commit is contained in:
Benedikt Kulmann
2020-09-10 11:02:06 +02:00
committed by GitHub
2 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
Bugfix: Fix external app URLs
The URLs for the default set of external apps was hardcoded to localhost:9200. We fixed that by using relative paths instead.
https://github.com/owncloud/product/issues/218
https://github.com/owncloud/ocis-phoenix/pull/83

View File

@@ -72,11 +72,11 @@ func (p Phoenix) getPayload() (payload []byte, err error) {
p.config.Phoenix.Config.ExternalApps = []config.ExternalApp{
{
ID: "accounts",
Path: "https://localhost:9200/accounts.js",
Path: "/accounts.js",
},
{
ID: "settings",
Path: "https://localhost:9200/settings.js",
Path: "/settings.js",
},
}
}