Task Attachments #104

Merged
konrad merged 63 commits from feature/attachments into master 2019-10-16 20:52:31 +00:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 9164819e72 - Show all commits

View File

@ -106,3 +106,9 @@ ratelimit:
limit: 100
# The store where the limit counter for each user is stored. Possible values are "memory" or "redis"
store: memory
files:
# The path where files are stored
basepath: ./files # relative to the binary
# The maximum size of a file, in bytes.
maxsize: 21474836480 # 20 MB

View File

@ -149,4 +149,10 @@ ratelimit:
limit: 100
# The store where the limit counter for each user is stored. Possible values are "memory" or "redis"
store: memory
files:
# The path where files are stored
basepath: ./files # relative to the binary
# The maximum size of a file, in bytes.
maxsize: 21474836480 # 20 MB
{{< /highlight >}}