enigma-bbs/docs/filebase/uploads.md

25 lines
714 B
Markdown
Raw Normal View History

---
layout: page
title: Uploads
---
2018-11-28 06:22:09 +00:00
## Uploads
2020-05-15 03:20:27 +00:00
The default ACS for file areas in ENiGMA½ is to allow regular users 'read' and sysops 'read/write'. Read ACS includes listing and downloading while write allows for uploading. See [File Base ACS](acs.md) for more information.
2020-05-15 03:22:15 +00:00
Let's allow regular users (in the "users" group) to upload to an area:
2018-11-28 06:22:09 +00:00
```hjson
uploads: {
name: Uploads
desc: User Uploads
storageTags: [
"uploads"
]
acs: {
write: GM[users]
}
}
````
:information_source: Remember that uploads in a particular area are stored **using the first storage tag defined in that area.**
2020-06-13 12:07:19 +00:00
:information_source: Any ACS checks are allowed. See [ACS](../configuration/acs.md)