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

Initial work on the owncloudsql driver #1710

Merged
merged 5 commits into from
Jun 9, 2021
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
7 changes: 7 additions & 0 deletions changelog/unreleased/owncloudsql-storage-driver.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Enhancement: owncloudsql storage driver

This PR adds a storage driver which connects to a oc10 storage backend
(storage + database).
This allows for running oc10 and ocis with the same backend in parallel.

https://github.com/cs3org/reva/pull/1710
1 change: 1 addition & 0 deletions pkg/storage/fs/loader/loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import (
_ "github.com/cs3org/reva/pkg/storage/fs/localhome"
_ "github.com/cs3org/reva/pkg/storage/fs/ocis"
_ "github.com/cs3org/reva/pkg/storage/fs/owncloud"
_ "github.com/cs3org/reva/pkg/storage/fs/owncloudsql"
_ "github.com/cs3org/reva/pkg/storage/fs/s3"
_ "github.com/cs3org/reva/pkg/storage/fs/s3ng"
// Add your own here
Expand Down
Loading