You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/en/docs/config/grpc/services/appprovider/_index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ description: >
9
9
# _struct: config_
10
10
11
11
{{% 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)
13
13
{{< highlight toml >}}
14
14
[grpc.services.appprovider]
15
15
mime_types = nil
16
16
{{< /highlight >}}
17
17
{{% /dir %}}
18
18
19
19
{{% 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)
Copy file name to clipboardExpand all lines: docs/content/en/docs/config/grpc/services/storageprovider/_index.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -9,31 +9,31 @@ description: >
9
9
# _struct: config_
10
10
11
11
{{% 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)
13
13
{{< highlight toml >}}
14
14
[grpc.services.storageprovider]
15
15
mount_path = "/"
16
16
{{< /highlight >}}
17
17
{{% /dir %}}
18
18
19
19
{{% 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)
21
21
{{< highlight toml >}}
22
22
[grpc.services.storageprovider]
23
23
mount_id = "-"
24
24
{{< /highlight >}}
25
25
{{% /dir %}}
26
26
27
27
{{% 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)
29
29
{{< highlight toml >}}
30
30
[grpc.services.storageprovider]
31
31
driver = "localhome"
32
32
{{< /highlight >}}
33
33
{{% /dir %}}
34
34
35
35
{{% dir name="drivers" type="map[string]map[string]interface{}" default="localhome" %}}
{{% 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)
48
48
{{< highlight toml >}}
49
49
[grpc.services.storageprovider]
50
50
tmp_folder = "/var/tmp"
51
51
{{< /highlight >}}
52
52
{{% /dir %}}
53
53
54
54
{{% 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)
56
56
{{< highlight toml >}}
57
57
[grpc.services.storageprovider]
58
58
data_server_url = "http://localhost/data"
59
59
{{< /highlight >}}
60
60
{{% /dir %}}
61
61
62
62
{{% 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)
64
64
{{< highlight toml >}}
65
65
[grpc.services.storageprovider]
66
66
expose_data_server = false
67
67
{{< /highlight >}}
68
68
{{% /dir %}}
69
69
70
70
{{% 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)
72
72
{{< highlight toml >}}
73
73
[grpc.services.storageprovider]
74
74
available_checksums = nil
75
75
{{< /highlight >}}
76
76
{{% /dir %}}
77
77
78
78
{{% 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)
Copy file name to clipboardExpand all lines: docs/content/en/docs/config/http/services/appprovider/_index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ description: >
9
9
# _struct: Config_
10
10
11
11
{{% 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)
Copy file name to clipboardExpand all lines: docs/content/en/docs/config/http/services/datagateway/_index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ description: >
9
9
# _struct: config_
10
10
11
11
{{% 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)
Copy file name to clipboardExpand all lines: docs/content/en/docs/config/http/services/owncloud/ocdav/_index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ description: >
9
9
# _struct: Config_
10
10
11
11
{{% 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)
13
13
{{< highlight toml >}}
14
14
[http.services.owncloud.ocdav]
15
15
insecure = false
16
16
{{< /highlight >}}
17
17
{{% /dir %}}
18
18
19
19
{{% dir name="notifications" type="map[string]interface{}" default=Settingsg for the Notification Helper %}}
Copy file name to clipboardExpand all lines: docs/content/en/docs/config/packages/notification/handler/emailhandler/_index.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -9,39 +9,39 @@ description: >
9
9
# _struct: config_
10
10
11
11
{{% 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)
13
13
{{< highlight toml >}}
14
14
[notification.handler.emailhandler]
15
15
smtp_server = ""
16
16
{{< /highlight >}}
17
17
{{% /dir %}}
18
18
19
19
{{% 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)
21
21
{{< highlight toml >}}
22
22
[notification.handler.emailhandler]
23
23
sender_login = ""
24
24
{{< /highlight >}}
25
25
{{% /dir %}}
26
26
27
27
{{% 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)
29
29
{{< highlight toml >}}
30
30
[notification.handler.emailhandler]
31
31
sender_password = ""
32
32
{{< /highlight >}}
33
33
{{% /dir %}}
34
34
35
35
{{% 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)
37
37
{{< highlight toml >}}
38
38
[notification.handler.emailhandler]
39
39
disable_auth = false
40
40
{{< /highlight >}}
41
41
{{% /dir %}}
42
42
43
43
{{% 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)
Copy file name to clipboardExpand all lines: docs/content/en/docs/config/packages/ocm/provider/authorizer/mentix/_index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ description: >
9
9
# _struct: config_
10
10
11
11
{{% 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)
nats_token = "The token to authenticate against the NATS server"
24
24
{{< /highlight >}}
25
25
{{% /dir %}}
26
26
27
27
{{% 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)
29
29
{{< highlight toml >}}
30
30
[serverless.services.notifications]
31
31
nats_prefix = "reva-notifications"
32
32
{{< /highlight >}}
33
33
{{% /dir %}}
34
34
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)
37
37
{{< highlight toml >}}
38
38
[serverless.services.notifications]
39
39
handlers =
40
40
{{< /highlight >}}
41
41
{{% /dir %}}
42
42
43
43
{{% 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)
45
45
{{< highlight toml >}}
46
46
[serverless.services.notifications]
47
47
grouping_interval = 60
48
48
{{< /highlight >}}
49
49
{{% /dir %}}
50
50
51
51
{{% 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)
53
53
{{< highlight toml >}}
54
54
[serverless.services.notifications]
55
55
grouping_max_size = 100
56
56
{{< /highlight >}}
57
57
{{% /dir %}}
58
58
59
59
{{% 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)
0 commit comments