mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-10 11:09:43 +00:00
Add default endpoint to Pleroma.Captcha.Kocaptcha
This commit is contained in:
parent
8efacfed67
commit
82c62c5028
2 changed files with 3 additions and 3 deletions
|
@ -95,8 +95,6 @@ config :joken, default_signer: "yU8uHKq+yyAkZ11Hx//jcdacWc8yQ1bxAAGrplzB0Zwwjkp3
|
|||
|
||||
config :pleroma, Pleroma.ReverseProxy.Client, Pleroma.ReverseProxy.ClientMock
|
||||
|
||||
config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
|
||||
|
||||
if File.exists?("./config/test.secret.exs") do
|
||||
import_config "test.secret.exs"
|
||||
else
|
||||
|
|
|
@ -5,11 +5,13 @@
|
|||
defmodule Pleroma.Captcha.Kocaptcha do
|
||||
import Pleroma.Web.Gettext
|
||||
alias Pleroma.Captcha.Service
|
||||
|
||||
@behaviour Service
|
||||
@default_endpoint "https://captcha.kotobank.ch"
|
||||
|
||||
@impl Service
|
||||
def new do
|
||||
endpoint = Pleroma.Config.get!([__MODULE__, :endpoint])
|
||||
endpoint = Pleroma.Config.get([__MODULE__, :endpoint], @default_endpoint)
|
||||
|
||||
case Tesla.get(endpoint <> "/new") do
|
||||
{:error, _} ->
|
||||
|
|
Loading…
Reference in a new issue