hfs 0.35.0 → 0.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -5
- package/admin/assets/{index-0859bb0d.js → index-553acfd5.js} +59 -59
- package/admin/assets/{index-6f45486d.css → index-a21d9024.css} +1 -1
- package/{frontend/assets/sha512-5cf58050.js → admin/assets/sha512-df6106ba.js} +1 -1
- package/admin/index.html +2 -2
- package/frontend/assets/{index-c4c325e9.css → index-216f7ea9.css} +1 -1
- package/frontend/assets/index-44854bd0.js +85 -0
- package/{admin/assets/sha512-1ab69ff8.js → frontend/assets/sha512-99595208.js} +1 -1
- package/frontend/index.html +2 -2
- package/package.json +1 -1
- package/src/api.monitor.js +34 -0
- package/src/api.vfs.js +7 -3
- package/src/const.js +1 -1
- package/src/middlewares.js +1 -1
- package/src/upload.js +14 -3
- package/src/vfs.js +5 -5
- package/frontend/assets/index-21e40dc5.js +0 -85
package/README.md
CHANGED
|
@@ -196,11 +196,10 @@ Valid keys in a node are:
|
|
|
196
196
|
- `can_delete` specify who can delete. Applies to folders with a source. Default is none.
|
|
197
197
|
- `masks`: maps a file mask to a set of properties as the one documented in this section. E.g.
|
|
198
198
|
```
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
mime: auto
|
|
199
|
+
"**/*.mp3":
|
|
200
|
+
can_read: false
|
|
201
|
+
"*.jpg|*.png":
|
|
202
|
+
mime: auto
|
|
204
203
|
```
|
|
205
204
|
|
|
206
205
|
Permissions set on an inner element will override inherited permissions. This means that you can restrict access to folder1,
|