diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-04-08 16:46:59 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-04-08 16:46:59 +0700 |
commit | c3d5c3513a3205313f0a2e28bb328ad5b48f2055 (patch) | |
tree | 09ec548304cf3bbabba5a3b216c2d6769c9a6525 /docs/config.md | |
parent | a1a854646e96598473ed7a323e034cf1f88ca508 (diff) | |
parent | b177e1e7f330ff1531be190949db7f75e378a449 (diff) | |
download | pleroma-c3d5c3513a3205313f0a2e28bb328ad5b48f2055.tar.gz |
Merge remote-tracking branch 'pleroma/develop' into use-jobs-in-webpush
Diffstat (limited to 'docs/config.md')
-rw-r--r-- | docs/config.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/config.md b/docs/config.md index 6f3119573..357f12e5d 100644 --- a/docs/config.md +++ b/docs/config.md @@ -318,6 +318,7 @@ Pleroma has the following queues: * `federator_incoming` - Incoming federation * `mailer` - Email sender, see [`Pleroma.Mailer`](#pleroma-mailer) * `web_push` - Web push notifications +* `scheduled_activities` - Scheduled activities, see [`Pleroma.ScheduledActivities`](#pleromascheduledactivity) Example: @@ -413,3 +414,9 @@ Pleroma account will be created with the same name as the LDAP user name. * `Pleroma.Web.Auth.PleromaAuthenticator`: default database authenticator * `Pleroma.Web.Auth.LDAPAuthenticator`: LDAP authentication + +## Pleroma.ScheduledActivity + +* `daily_user_limit`: the number of scheduled activities a user is allowed to create in a single day (Default: `25`) +* `total_user_limit`: the number of scheduled activities a user is allowed to create in total (Default: `300`) +* `enabled`: whether scheduled activities are sent to the job queue to be executed |