diff options
author | lain <lain@soykaf.club> | 2020-11-19 12:27:06 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-11-19 12:27:06 +0100 |
commit | 11e0d5f9acc85fe1a09e11da91f2abd35bc83f89 (patch) | |
tree | e90fd38239bb73a66d5d26b16d168fca24a491cd /config/config.exs | |
parent | 8a7ee9fe74f64680da366b0da51038bed022061b (diff) | |
download | pleroma-11e0d5f9acc85fe1a09e11da91f2abd35bc83f89.tar.gz pleroma-11e0d5f9acc85fe1a09e11da91f2abd35bc83f89.zip |
Password Resets: Don't accept tokens above a certain age.
By default, one day
Diffstat (limited to 'config/config.exs')
-rw-r--r-- | config/config.exs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs index 1ac140ed0..be5257663 100644 --- a/config/config.exs +++ b/config/config.exs @@ -263,7 +263,8 @@ config :pleroma, :instance, length: 16 ] ], - show_reactions: true + show_reactions: true, + password_reset_token_validity: 60 * 60 * 24 config :pleroma, :welcome, direct_message: [ |