aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaelwenn <contact+git.pleroma.social@hacktivis.me>2020-05-19 06:43:57 +0000
committerHaelwenn <contact+git.pleroma.social@hacktivis.me>2020-05-19 06:43:57 +0000
commit86f50a809f3237b98b8631262fe653839834915a (patch)
tree491df65e3794fe51d894163b71e0e04a59457952
parenta66da971ff2dcd5f1fe82d3826998a282f1448f3 (diff)
parented442a225ae1a6a524d18149698f2238b394b948 (diff)
downloadpleroma-86f50a809f3237b98b8631262fe653839834915a.tar.gz
Merge branch 'support/docs' into 'develop'
fix docs See merge request pleroma/pleroma!2555
-rw-r--r--docs/configuration/cheatsheet.md18
1 files changed, 0 insertions, 18 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md
index 1078c4e87..ce3bf3af7 100644
--- a/docs/configuration/cheatsheet.md
+++ b/docs/configuration/cheatsheet.md
@@ -619,24 +619,6 @@ config :pleroma, :workers,
* `enabled: false` corresponds to `config :pleroma, :workers, retries: [federator_outgoing: 1]`
* deprecated options: `max_jobs`, `initial_timeout`
-### Pleroma.Scheduler
-
-Configuration for [Quantum](https://github.com/quantum-elixir/quantum-core) jobs scheduler.
-
-See [Quantum readme](https://github.com/quantum-elixir/quantum-core#usage) for the list of supported options.
-
-Example:
-
-```elixir
-config :pleroma, Pleroma.Scheduler,
- global: true,
- overlap: true,
- timezone: :utc,
- jobs: [{"0 */6 * * * *", {Pleroma.Web.Websub, :refresh_subscriptions, []}}]
-```
-
-The above example defines a single job which invokes `Pleroma.Web.Websub.refresh_subscriptions()` every 6 hours ("0 */6 * * * *", [crontab format](https://en.wikipedia.org/wiki/Cron)).
-
## :web_push_encryption, :vapid_details
Web Push Notifications configuration. You can use the mix task `mix web_push.gen.keypair` to generate it.