Changed default OAuth token expiration time to 30 days.
authorIvan Tashkinov <ivantashkinov@gmail.com>
Wed, 9 Dec 2020 16:59:46 +0000 (19:59 +0300)
committerIvan Tashkinov <ivantashkinov@gmail.com>
Wed, 9 Dec 2020 16:59:46 +0000 (19:59 +0300)
lib/pleroma/mfa/token.ex

index 69b64c0e8ed73087a1912bbdf2312407382b2e91..82d3817ccfaca12e014ca0c848d5c1778371df2d 100644 (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__{}