Merge pull request #473 from owncloud/external-app-config

External app config
This commit is contained in:
Benedikt Kulmann
2020-08-20 16:40:53 +02:00
committed by GitHub
2 changed files with 5 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
Bugfix: Don't enforce empty external apps slice
The command for ocis-phoenix enforced an empty external apps configuration. This was removed, as it was blocking a new set of default external apps in ocis-phoenix.
https://github.com/owncloud/ocis/pull/473

View File

@@ -20,8 +20,5 @@ func configurePhoenix(cfg *config.Config) *svcconfig.Config {
cfg.Phoenix.Tracing.Service = cfg.Tracing.Service
}
// disable ocis-hello extension
cfg.Phoenix.Phoenix.Config.ExternalApps = []svcconfig.ExternalApp{}
return cfg.Phoenix
}