aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authoreugenijm <eugenijm@protonmail.com>2019-04-03 18:55:04 +0300
committereugenijm <eugenijm@protonmail.com>2019-04-06 23:56:29 +0300
commit2056efa714460faaf25f6bc03ab643f5a2e8cd3d (patch)
tree4fd0c8071e6f0da03ed59ca90344de0b710ba7c5 /docs
parentfc92a0fd8d5be0352f4791b79bda04960f36f707 (diff)
downloadpleroma-2056efa714460faaf25f6bc03ab643f5a2e8cd3d.tar.gz
Add scheduler for sending scheduled activities to the queue
Diffstat (limited to 'docs')
-rw-r--r--docs/config.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/config.md b/docs/config.md
index df21beff3..ba0759e87 100644
--- a/docs/config.md
+++ b/docs/config.md
@@ -317,6 +317,7 @@ Pleroma has the following queues:
* `federator_outgoing` - Outgoing federation
* `federator_incoming` - Incoming federation
* `mailer` - Email sender, see [`Pleroma.Mailer`](#pleroma-mailer)
+* `scheduled_activities` - Scheduled activities, see [`Pleroma.ScheduledActivities`](#pleromascheduledactivity)
Example:
@@ -413,7 +414,8 @@ 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
+## Pleroma.ScheduledActivity
-* `daily_user_limit`: the number of scheduled activities a user is allowed to create in a single day
-* `total_user_limit`: the number of scheduled activities a user is allowed to create in total
+* `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