Changed default OAuth token expiration time to 30 days.

This commit is contained in:
Ivan Tashkinov 2020-12-09 19:59:46 +03:00
parent 477c6c8e55
commit 7da0349d73
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ defmodule Pleroma.MFA.Token do
alias Pleroma.User
alias Pleroma.Web.OAuth.Authorization
@expires 300
@expires 3600 * 24 * 30
@type t() :: %__MODULE__{}