forked from AkkomaGang/akkoma
Merge branch 'oauth-token-30-days-expiration' into 'develop'
Changed default OAuth token expiration time to 30 days See merge request pleroma/pleroma!3192
This commit is contained in:
commit
c308224aaf
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ defmodule Pleroma.MFA.Token do
|
||||||
alias Pleroma.User
|
alias Pleroma.User
|
||||||
alias Pleroma.Web.OAuth.Authorization
|
alias Pleroma.Web.OAuth.Authorization
|
||||||
|
|
||||||
@expires 300
|
@expires 3600 * 24 * 30
|
||||||
|
|
||||||
@type t() :: %__MODULE__{}
|
@type t() :: %__MODULE__{}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue