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

feature(sharing): add graph endpoints to accept or decline a share #7885

Merged
merged 18 commits into from
Feb 28, 2024
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
6 changes: 6 additions & 0 deletions changelog/unreleased/sharing-ng-mount.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Enhancement: graphs endpoint for mounting and unmounting shares

Functionality for mounting (accepting) and unmounting (rejecting) received
rhafer marked this conversation as resolved.
Show resolved Hide resolved
shares has been added to the graph API.

https://github.com/owncloud/ocis/pull/7885
10 changes: 9 additions & 1 deletion services/graph/.mockery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,20 @@ outpkg: "mocks"
packages:
github.com/owncloud/ocis/v2/services/graph/pkg/service/v0:
config:
dir: "mocks"
dir: "mocks"
interfaces:
DrivesDriveItemProvider:
HTTPClient:
Permissions:
Publisher:
RoleService:
github.com/cs3org/reva/v2/pkg/rgrpc/todo/pool:
config:
dir: "mocks"
interfaces:
Selectable:
config:
filename: "gateway_selector.go"
github.com/owncloud/ocis/v2/services/graph/pkg/identity:
config:
dir: "pkg/identity/mocks"
Expand Down
144 changes: 144 additions & 0 deletions services/graph/mocks/drives_drive_item_provider.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

104 changes: 104 additions & 0 deletions services/graph/mocks/gateway_selector.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading