Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable ocis driver treetime accounting #620

Merged
merged 1 commit into from
Sep 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ocis-reva/changelog/unreleased/enable-treetime-accounting.md
Original file line number Diff line number Diff line change
@@ -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
8 changes: 5 additions & 3 deletions ocis-reva/pkg/command/drivers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down