Merge pull request #620 from butonic/ocis-treetime-accounting

enable ocis driver treetime accounting
This commit is contained in:
Jörn Friedrich Dreyer
2020-09-28 21:09:55 +02:00
committed by GitHub
2 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
Enhancement: enable ocis driver treetime accounting
We enabled treetime accounting in the ocis driver
https://github.com/owncloud/ocis/pull/620

View File

@@ -86,9 +86,11 @@ func drivers(cfg *config.Config) map[string]interface{} {
"userprovidersvc": cfg.Reva.Users.URL,
},
"ocis": map[string]interface{}{
"root": cfg.Reva.Storages.Common.Root,
"enable_home": cfg.Reva.Storages.Common.EnableHome,
"user_layout": cfg.Reva.Storages.Common.UserLayout,
"root": cfg.Reva.Storages.Common.Root,
"enable_home": cfg.Reva.Storages.Common.EnableHome,
"user_layout": cfg.Reva.Storages.Common.UserLayout,
"treetime_accounting": true,
"treesize_accounting": true,
},
"s3": map[string]interface{}{
"region": cfg.Reva.Storages.S3.Region,