logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 3235923276650ac3a5b8a64c985f118d0f6e309e
parent: 63ab3c30ebb33241074cb252c449cd7879b77870
Author: lain <lain@soykaf.club>
Date:   Tue, 11 Jun 2019 11:34:23 +0000

Merge branch 'better-default-parameters-for-suggestion' into 'develop'

Better default parameters for suggestion

See merge request pleroma/pleroma!1265

Diffstat:

Mconfig/config.exs4++--
Mdocs/config/howto_user_recomendation.md6+++---
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/config/config.exs b/config/config.exs @@ -360,8 +360,8 @@ config :pleroma, :suggestions, third_party_engine: "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}", timeout: 300_000, - limit: 23, - web: "https://vinayaka.distsn.org/?{{host}}+{{user}}" + limit: 40, + web: "https://vinayaka.distsn.org" config :pleroma, :http_security, enabled: true, diff --git a/docs/config/howto_user_recomendation.md b/docs/config/howto_user_recomendation.md @@ -9,8 +9,8 @@ config :pleroma, :suggestions, third_party_engine: "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}", timeout: 300_000, - limit: 23, - web: "https://vinayaka.distsn.org/?{{host}}+{{user}}" + limit: 40, + web: "https://vinayaka.distsn.org" ``` @@ -26,6 +26,6 @@ config :pleroma, :suggestions, third_party_engine: "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-new-suggestions-api.cgi?{{host}}+{{user}}", timeout: 60_000, - limit: 23, + limit: 40, web: "https://vinayaka.distsn.org/user-new.html" ```