enigma-bbs/docs/filebase/uploads.md

26 lines
818 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:20:27 +00:00
To change ACS for a particular area, create an `acs` block specifying ACS for `read` and/or `write`. For example, 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.**
:information_source: Any ACS checks are allowed. See [ACS](/docs/acs.md)