X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;ds=inline;f=docs%2Fconfiguration%2Fcheatsheet.md;h=8f242538421bb730cd1fae18f5ab4fd54ff42b9c;hb=2c2094d4b2722cf511e3db8288c3754a48038f05;hp=d0bebbd4521e13c13683d441664d0a3ae0758265;hpb=4954667fb24ee6ab7b1bf3b676f7e88a582130cf;p=akkoma diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index d0bebbd45..8f2425384 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -1091,3 +1091,16 @@ config :pleroma, :frontends, ``` This would serve the frontend from the the folder at `$instance_static/frontends/pleroma/stable`. You have to copy the frontend into this folder yourself. You can choose the name and ref any way you like, but they will be used by mix tasks to automate installation in the future, the name referring to the project and the ref referring to a commit. + +## Ephemeral activities + +Settings to enable and configure expiration for ephemeral activities + +* `:enabled` - enables ephemeral activities creation +* `:min_lifetime` - minimum lifetime for ephemeral activities (in seconds). Default: 10 minutes. + +Example: + +```elixir + config :pleroma, Pleroma.Workers.PurgeExpiredActivity, enabled: true, min_lifetime: 600 +```