add reva app provider

This commit is contained in:
Willy Kloucek
2021-09-01 12:50:02 +02:00
parent 7b1a7b20f1
commit df6359807b
10 changed files with 370 additions and 1 deletions
+11
View File
@@ -39,6 +39,16 @@ type StorageRegistry struct {
JSON string
}
// AppProvider defines the available app provider configuration
type AppProvider struct {
Port
Driver string
IopSecret string
WopiInsecure bool
WopiUrl string
WopiBridgeUrl string
}
// Sharing defines the available sharing configuration.
type Sharing struct {
Port
@@ -390,6 +400,7 @@ type Reva struct {
StorageUsers StoragePort
StoragePublicLink PublicStorage
StorageMetadata StoragePort
AppProvider AppProvider
// Configs can be used to configure the reva instance.
// Services and Ports will be ignored if this is used
Configs map[string]interface{}