Change minutes_retained config to seconds_retained
This commit is contained in:
parent
1d31fd0722
commit
3a31fdaf06
@ -12,7 +12,7 @@ config :pleroma, Pleroma.Repo, types: Pleroma.PostgresTypes
|
||||
|
||||
config :pleroma, Pleroma.Captcha,
|
||||
enabled: false,
|
||||
minutes_retained: 5,
|
||||
seconds_retained: 180,
|
||||
method: Pleroma.Captcha.Kocaptcha
|
||||
|
||||
config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
|
||||
|
@ -40,9 +40,9 @@ defmodule Pleroma.Captcha do
|
||||
else
|
||||
new_captcha = method().new()
|
||||
|
||||
minutes_retained = Pleroma.Config.get!([__MODULE__, :minutes_retained])
|
||||
seconds_retained = Pleroma.Config.get!([__MODULE__, :seconds_retained])
|
||||
# Wait several minutes and if the captcha is still there, delete it
|
||||
Process.send_after(self(), {:cleanup, new_captcha.token}, 1000 * 60 * minutes_retained)
|
||||
Process.send_after(self(), {:cleanup, new_captcha.token}, 1000 * seconds_retained)
|
||||
|
||||
{:reply, new_captcha, state}
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user