diff options
author | rinpatch <rinpatch@sdf.org> | 2020-12-17 18:34:49 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-12-17 18:34:49 +0000 |
commit | afc68a052c384adffc7040df9e1faeb2ffacf6e4 (patch) | |
tree | 9d4aace3e63cd7d1f1ba1ea6c7d343f3bb5897ef /config/config.exs | |
parent | ff7f7416f70591439579fd370aaebd4fb4b21249 (diff) | |
parent | 62bf4a12929fb61164874180af491f9e12f21084 (diff) | |
download | pleroma-afc68a052c384adffc7040df9e1faeb2ffacf6e4.tar.gz pleroma-afc68a052c384adffc7040df9e1faeb2ffacf6e4.zip |
Merge branch 'long-life-oauth-tokens' into 'develop'
[#2353] Virtually never-expiring OAuth tokens (new and already issued ones)
Closes #2353
See merge request pleroma/pleroma!3205
Diffstat (limited to 'config/config.exs')
-rw-r--r-- | config/config.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs index 98c87a4f9..3ccb6a3f5 100644 --- a/config/config.exs +++ b/config/config.exs @@ -648,7 +648,7 @@ config :pleroma, :email_notifications, } config :pleroma, :oauth2, - token_expires_in: 3600 * 24 * 30, + token_expires_in: 3600 * 24 * 365 * 100, issue_new_refresh_token: true, clean_expired_tokens: false |