forked from AkkomaGang/akkoma
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 :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