Skip to content

Commit 9266d8e

Browse files
authored
Handle target in OpenInApp response (#4077)
1 parent 9cfa273 commit 9266d8e

File tree

23 files changed

+122
-69
lines changed

23 files changed

+122
-69
lines changed

changelog/unreleased/openappintab.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Enhancement: Handle target in OpenInApp response
2+
3+
This PR adds the OpenInApp.target and AppProviderInfo.action properties
4+
to the respective responses (/app/open and /app/list), to support
5+
different app integrations.
6+
In addition, the archiver was extended to use the name of the file/folder
7+
as opposed to "download", and to include a query parameter to
8+
override the archive type, as it will be used in an upcoming app.
9+
10+
https://github.com/cs3org/reva/pull/4077

docs/content/en/docs/config/grpc/services/appprovider/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="mime_types" type="[]string" default=nil %}}
12-
A list of mime types supported by this app. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/appprovider/appprovider.go#L62)
12+
A list of mime types supported by this app. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/appprovider/appprovider.go#L68)
1313
{{< highlight toml >}}
1414
[grpc.services.appprovider]
1515
mime_types = nil
1616
{{< /highlight >}}
1717
{{% /dir %}}
1818

1919
{{% dir name="custom_mime_types_json" type="string" default="nil" %}}
20-
An optional mapping file with the list of supported custom file extensions and corresponding mime types. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/appprovider/appprovider.go#L63)
20+
An optional mapping file with the list of supported custom file extensions and corresponding mime types. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/appprovider/appprovider.go#L69)
2121
{{< highlight toml >}}
2222
[grpc.services.appprovider]
2323
custom_mime_types_json = "nil"

docs/content/en/docs/config/grpc/services/ocminvitemanager/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="provider_domain" type="string" default="The same domain registered in the provider authorizer" %}}
12-
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/ocminvitemanager/ocminvitemanager.go#L55)
12+
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/ocminvitemanager/ocminvitemanager.go#L61)
1313
{{< highlight toml >}}
1414
[grpc.services.ocminvitemanager]
1515
provider_domain = "The same domain registered in the provider authorizer"

docs/content/en/docs/config/grpc/services/ocmshareprovider/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="provider_domain" type="string" default="The same domain registered in the provider authorizer" %}}
12-
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/ocmshareprovider/ocmshareprovider.go#L64)
12+
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/ocmshareprovider/ocmshareprovider.go#L70)
1313
{{< highlight toml >}}
1414
[grpc.services.ocmshareprovider]
1515
provider_domain = "The same domain registered in the provider authorizer"

docs/content/en/docs/config/grpc/services/permissions/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="driver" type="string" default="localhome" %}}
12-
The permission driver to be used. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/permissions/permissions.go#L40)
12+
The permission driver to be used. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/permissions/permissions.go#L46)
1313
{{< highlight toml >}}
1414
[grpc.services.permissions]
1515
driver = "localhome"
1616
{{< /highlight >}}
1717
{{% /dir %}}
1818

1919
{{% dir name="drivers" type="map[string]map[string]interface{}" default="permission" %}}
20-
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/permissions/permissions.go#L41)
20+
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/permissions/permissions.go#L47)
2121
{{< highlight toml >}}
2222
[grpc.services.permissions.drivers.permission]
2323

docs/content/en/docs/config/grpc/services/storageprovider/_index.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,31 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="mount_path" type="string" default="/" %}}
12-
The path where the file system would be mounted. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L57)
12+
The path where the file system would be mounted. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L63)
1313
{{< highlight toml >}}
1414
[grpc.services.storageprovider]
1515
mount_path = "/"
1616
{{< /highlight >}}
1717
{{% /dir %}}
1818

1919
{{% dir name="mount_id" type="string" default="-" %}}
20-
The ID of the mounted file system. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L58)
20+
The ID of the mounted file system. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L64)
2121
{{< highlight toml >}}
2222
[grpc.services.storageprovider]
2323
mount_id = "-"
2424
{{< /highlight >}}
2525
{{% /dir %}}
2626

2727
{{% dir name="driver" type="string" default="localhome" %}}
28-
The storage driver to be used. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L59)
28+
The storage driver to be used. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L65)
2929
{{< highlight toml >}}
3030
[grpc.services.storageprovider]
3131
driver = "localhome"
3232
{{< /highlight >}}
3333
{{% /dir %}}
3434

3535
{{% dir name="drivers" type="map[string]map[string]interface{}" default="localhome" %}}
36-
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L60)
36+
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L66)
3737
{{< highlight toml >}}
3838
[grpc.services.storageprovider.drivers.localhome]
3939
root = "/var/tmp/reva/"
@@ -44,39 +44,39 @@ user_layout = "{{.Username}}"
4444
{{% /dir %}}
4545

4646
{{% dir name="tmp_folder" type="string" default="/var/tmp" %}}
47-
Path to temporary folder. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L61)
47+
Path to temporary folder. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L67)
4848
{{< highlight toml >}}
4949
[grpc.services.storageprovider]
5050
tmp_folder = "/var/tmp"
5151
{{< /highlight >}}
5252
{{% /dir %}}
5353

5454
{{% dir name="data_server_url" type="string" default="http://localhost/data" %}}
55-
The URL for the data server. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L62)
55+
The URL for the data server. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L68)
5656
{{< highlight toml >}}
5757
[grpc.services.storageprovider]
5858
data_server_url = "http://localhost/data"
5959
{{< /highlight >}}
6060
{{% /dir %}}
6161

6262
{{% dir name="expose_data_server" type="bool" default=false %}}
63-
Whether to expose data server. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L63)
63+
Whether to expose data server. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L69)
6464
{{< highlight toml >}}
6565
[grpc.services.storageprovider]
6666
expose_data_server = false
6767
{{< /highlight >}}
6868
{{% /dir %}}
6969

7070
{{% dir name="available_checksums" type="map[string]uint32" default=nil %}}
71-
List of available checksums. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L64)
71+
List of available checksums. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L70)
7272
{{< highlight toml >}}
7373
[grpc.services.storageprovider]
7474
available_checksums = nil
7575
{{< /highlight >}}
7676
{{% /dir %}}
7777

7878
{{% dir name="custom_mime_types_json" type="string" default="nil" %}}
79-
An optional mapping file with the list of supported custom file extensions and corresponding mime types. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L65)
79+
An optional mapping file with the list of supported custom file extensions and corresponding mime types. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/grpc/services/storageprovider/storageprovider.go#L71)
8080
{{< highlight toml >}}
8181
[grpc.services.storageprovider]
8282
custom_mime_types_json = "nil"

docs/content/en/docs/config/http/services/appprovider/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: >
99
# _struct: Config_
1010

1111
{{% dir name="insecure" type="bool" default=false %}}
12-
Whether to skip certificate checks when sending requests. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/http/services/appprovider/appprovider.go#L54)
12+
Whether to skip certificate checks when sending requests. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/http/services/appprovider/appprovider.go#L56)
1313
{{< highlight toml >}}
1414
[http.services.appprovider]
1515
insecure = false

docs/content/en/docs/config/http/services/datagateway/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="insecure" type="bool" default=false %}}
12-
Whether to skip certificate checks when sending requests. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/http/services/datagateway/datagateway.go#L62)
12+
Whether to skip certificate checks when sending requests. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/http/services/datagateway/datagateway.go#L61)
1313
{{< highlight toml >}}
1414
[http.services.datagateway]
1515
insecure = false

docs/content/en/docs/config/http/services/owncloud/ocdav/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ description: >
99
# _struct: Config_
1010

1111
{{% dir name="insecure" type="bool" default=false %}}
12-
Whether to skip certificate checks when sending requests. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/http/services/owncloud/ocdav/ocdav.go#L104)
12+
Whether to skip certificate checks when sending requests. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/http/services/owncloud/ocdav/ocdav.go#L103)
1313
{{< highlight toml >}}
1414
[http.services.owncloud.ocdav]
1515
insecure = false
1616
{{< /highlight >}}
1717
{{% /dir %}}
1818

1919
{{% dir name="notifications" type="map[string]interface{}" default=Settingsg for the Notification Helper %}}
20-
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/http/services/owncloud/ocdav/ocdav.go#L115)
20+
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/http/services/owncloud/ocdav/ocdav.go#L114)
2121
{{< highlight toml >}}
2222
[http.services.owncloud.ocdav]
2323
notifications = Settingsg for the Notification Helper

docs/content/en/docs/config/packages/notification/handler/emailhandler/_index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,39 +9,39 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="smtp_server" type="string" default="" %}}
12-
The hostname and port of the SMTP server. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L44)
12+
The hostname and port of the SMTP server. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L46)
1313
{{< highlight toml >}}
1414
[notification.handler.emailhandler]
1515
smtp_server = ""
1616
{{< /highlight >}}
1717
{{% /dir %}}
1818

1919
{{% dir name="sender_login" type="string" default="" %}}
20-
The email to be used to send mails. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L45)
20+
The email to be used to send mails. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L47)
2121
{{< highlight toml >}}
2222
[notification.handler.emailhandler]
2323
sender_login = ""
2424
{{< /highlight >}}
2525
{{% /dir %}}
2626

2727
{{% dir name="sender_password" type="string" default="" %}}
28-
The sender's password. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L46)
28+
The sender's password. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L48)
2929
{{< highlight toml >}}
3030
[notification.handler.emailhandler]
3131
sender_password = ""
3232
{{< /highlight >}}
3333
{{% /dir %}}
3434

3535
{{% dir name="disable_auth" type="bool" default=false %}}
36-
Whether to disable SMTP auth. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L47)
36+
Whether to disable SMTP auth. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L49)
3737
{{< highlight toml >}}
3838
[notification.handler.emailhandler]
3939
disable_auth = false
4040
{{< /highlight >}}
4141
{{% /dir %}}
4242

4343
{{% dir name="default_sender" type="string" default="[email protected]" %}}
44-
Default sender when not specified in the trigger. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L48)
44+
Default sender when not specified in the trigger. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/notification/handler/emailhandler/emailhandler.go#L50)
4545
{{< highlight toml >}}
4646
[notification.handler.emailhandler]
4747
default_sender = "[email protected]"

docs/content/en/docs/config/packages/ocm/provider/authorizer/mentix/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="insecure" type="bool" default=false %}}
12-
Whether to skip certificate checks when sending requests. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/ocm/provider/authorizer/mentix/mentix.go#L81)
12+
Whether to skip certificate checks when sending requests. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/ocm/provider/authorizer/mentix/mentix.go#L79)
1313
{{< highlight toml >}}
1414
[ocm.provider.authorizer.mentix]
1515
insecure = false

docs/content/en/docs/config/packages/storage/fs/local/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="root" type="string" default="/var/tmp/reva/" %}}
12-
Path of root directory for user storage. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/local/local.go#L34)
12+
Path of root directory for user storage. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/local/local.go#L35)
1313
{{< highlight toml >}}
1414
[storage.fs.local]
1515
root = "/var/tmp/reva/"
1616
{{< /highlight >}}
1717
{{% /dir %}}
1818

1919
{{% dir name="share_folder" type="string" default="/MyShares" %}}
20-
Path for storing share references. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/local/local.go#L35)
20+
Path for storing share references. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/local/local.go#L36)
2121
{{< highlight toml >}}
2222
[storage.fs.local]
2323
share_folder = "/MyShares"

docs/content/en/docs/config/packages/storage/fs/localhome/_index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="root" type="string" default="/var/tmp/reva/" %}}
12-
Path of root directory for user storage. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/localhome/localhome.go#L34)
12+
Path of root directory for user storage. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/localhome/localhome.go#L36)
1313
{{< highlight toml >}}
1414
[storage.fs.localhome]
1515
root = "/var/tmp/reva/"
1616
{{< /highlight >}}
1717
{{% /dir %}}
1818

1919
{{% dir name="share_folder" type="string" default="/MyShares" %}}
20-
Path for storing share references. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/localhome/localhome.go#L35)
20+
Path for storing share references. [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/localhome/localhome.go#L37)
2121
{{< highlight toml >}}
2222
[storage.fs.localhome]
2323
share_folder = "/MyShares"
2424
{{< /highlight >}}
2525
{{% /dir %}}
2626

2727
{{% dir name="user_layout" type="string" default="{{.Username}}" %}}
28-
Template for user home directories [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/localhome/localhome.go#L36)
28+
Template for user home directories [[Ref]](https://github.com/cs3org/reva/tree/master/pkg/storage/fs/localhome/localhome.go#L38)
2929
{{< highlight toml >}}
3030
[storage.fs.localhome]
3131
user_layout = "{{.Username}}"

docs/content/en/docs/config/serverless/services/notifications/_index.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,55 +9,55 @@ description: >
99
# _struct: config_
1010

1111
{{% dir name="nats_address" type="string" default="" %}}
12-
The NATS server address. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L46)
12+
The NATS server address. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L47)
1313
{{< highlight toml >}}
1414
[serverless.services.notifications]
1515
nats_address = ""
1616
{{< /highlight >}}
1717
{{% /dir %}}
1818

1919
{{% dir name="nats_token" type="string" default="The token to authenticate against the NATS server" %}}
20-
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L47)
20+
[[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L48)
2121
{{< highlight toml >}}
2222
[serverless.services.notifications]
2323
nats_token = "The token to authenticate against the NATS server"
2424
{{< /highlight >}}
2525
{{% /dir %}}
2626

2727
{{% dir name="nats_prefix" type="string" default="reva-notifications" %}}
28-
The notifications NATS stream. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L48)
28+
The notifications NATS stream. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L49)
2929
{{< highlight toml >}}
3030
[serverless.services.notifications]
3131
nats_prefix = "reva-notifications"
3232
{{< /highlight >}}
3333
{{% /dir %}}
3434

35-
{{% dir name="handlers" type="map[string]interface{}" default= %}}
36-
Settings for the different notification handlers. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L49)
35+
{{% dir name="handlers" type="map[string]map[string]interface{}" default= %}}
36+
Settings for the different notification handlers. [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L50)
3737
{{< highlight toml >}}
3838
[serverless.services.notifications]
3939
handlers =
4040
{{< /highlight >}}
4141
{{% /dir %}}
4242

4343
{{% dir name="grouping_interval" type="int" default=60 %}}
44-
Time in seconds to group incoming notification triggers [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L50)
44+
Time in seconds to group incoming notification triggers [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L51)
4545
{{< highlight toml >}}
4646
[serverless.services.notifications]
4747
grouping_interval = 60
4848
{{< /highlight >}}
4949
{{% /dir %}}
5050

5151
{{% dir name="grouping_max_size" type="int" default=100 %}}
52-
Maximum number of notifications to group [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L51)
52+
Maximum number of notifications to group [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L52)
5353
{{< highlight toml >}}
5454
[serverless.services.notifications]
5555
grouping_max_size = 100
5656
{{< /highlight >}}
5757
{{% /dir %}}
5858

5959
{{% dir name="storage_driver" type="string" default="mysql" %}}
60-
The driver used to store notifications [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L52)
60+
The driver used to store notifications [[Ref]](https://github.com/cs3org/reva/tree/master/internal/serverless/services/notifications/notifications.go#L53)
6161
{{< highlight toml >}}
6262
[serverless.services.notifications]
6363
storage_driver = "mysql"

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ require (
1717
github.com/coreos/go-oidc/v3 v3.5.0
1818
github.com/creasty/defaults v1.7.0
1919
github.com/cs3org/cato v0.0.0-20200828125504-e418fc54dd5e
20-
github.com/cs3org/go-cs3apis v0.0.0-20230606135123-b799d47a6648
20+
github.com/cs3org/go-cs3apis v0.0.0-20230727093620-0f4399be4543
2121
github.com/dgraph-io/ristretto v0.1.1
2222
github.com/dolthub/go-mysql-server v0.14.0
2323
github.com/eventials/go-tus v0.0.0-20200718001131-45c7ec8f5d59

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ github.com/creasty/defaults v1.7.0 h1:eNdqZvc5B509z18lD8yc212CAqJNvfT1Jq6L8WowdB
308308
github.com/creasty/defaults v1.7.0/go.mod h1:iGzKe6pbEHnpMPtfDXZEr0NVxWnPTjb1bbDy08fPzYM=
309309
github.com/cs3org/cato v0.0.0-20200828125504-e418fc54dd5e h1:tqSPWQeueWTKnJVMJffz4pz0o1WuQxJ28+5x5JgaHD8=
310310
github.com/cs3org/cato v0.0.0-20200828125504-e418fc54dd5e/go.mod h1:XJEZ3/EQuI3BXTp/6DUzFr850vlxq11I6satRtz0YQ4=
311-
github.com/cs3org/go-cs3apis v0.0.0-20230606135123-b799d47a6648 h1:gBz1JSC2u6o/TkUhWSdJZvacyTsVUzDouegRzvrJye4=
312-
github.com/cs3org/go-cs3apis v0.0.0-20230606135123-b799d47a6648/go.mod h1:UXha4TguuB52H14EMoSsCqDj7k8a/t7g4gVP+bgY5LY=
311+
github.com/cs3org/go-cs3apis v0.0.0-20230727093620-0f4399be4543 h1:IFo6dj0XEOIA6i2baRWMC3vd+fAmuIUAVfSf77ZhoQg=
312+
github.com/cs3org/go-cs3apis v0.0.0-20230727093620-0f4399be4543/go.mod h1:UXha4TguuB52H14EMoSsCqDj7k8a/t7g4gVP+bgY5LY=
313313
github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c/go.mod h1:GyV+0YP4qX0UQ7r2MoYZ+AvYDp12OF5yg4q8rGnyNh4=
314314
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
315315
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

0 commit comments

Comments
 (0)