make the app provider service name configurable

This commit is contained in:
Michael Barz
2023-06-08 21:44:42 +02:00
parent 2a5f8e5a3e
commit 080293c947
2 changed files with 6 additions and 1 deletions
@@ -0,0 +1,5 @@
Enhancement: Make the app provider service name configurable
We needed to make the service name of the app provider configurable. This needs to be changed when using more than one app provider. Each of them needs be found by a unique service name. Possible examples are: `app-provider-collabora`, `app-provider-onlyoffice`, `app-provider-office365`.
https://github.com/owncloud/ocis/pull/6482
+1 -1
View File
@@ -41,7 +41,7 @@ type Log struct {
}
type Service struct {
Name string `yaml:"-"`
Name string `yaml:"name" env:"APP_PROVIDER_SERVICE_NAME" desc:"The name of the service. This needs to be changed when using more than one app provider. Each of them needs be found by a unique service name. Possible examples are: \"app-provider-collabora\", \"app-provider-onlyoffice\", \"app-provider-office365\"."`
}
type Debug struct {