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: backend/opendrive/opendrive.go
+35-2Lines changed: 35 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,21 @@ Note that these chunks are buffered in memory so increasing them will
92
92
increase memory use.`,
93
93
Default: 10*fs.Mebi,
94
94
Advanced: true,
95
+
}, {
96
+
Name: "access",
97
+
Help: "Files and folders will be uploaded with this access permission (default private)",
98
+
Default: "private",
99
+
Advanced: true,
100
+
Examples: []fs.OptionExample{{
101
+
Value: "private",
102
+
Help: "The file or folder access can be granted in a way that will allow select users to view, read or write what is absolutely essential for them.",
103
+
}, {
104
+
Value: "public",
105
+
Help: "The file or folder can be downloaded by anyone from a web browser. The link can be shared in any way,",
106
+
}, {
107
+
Value: "hidden",
108
+
Help: "The file or folder can be accessed has the same restrictions as Public if the user knows the URL of the file or folder link in order to access the contents",
0 commit comments