diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-28 20:34:13 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-28 20:39:20 +0300 |
commit | 21a2a054070c26d7be1a0e453e5f40b20fbd59f2 (patch) | |
tree | af2812719f0485e8d844b1251f0de1be28673395 /docs/configuration | |
parent | bfc70fdf29c2e1067179165ef686e6abe20896b0 (diff) | |
parent | e8f22451da18aeba9bcf9f9f6acf93690ccb3cba (diff) | |
download | pleroma-21a2a054070c26d7be1a0e453e5f40b20fbd59f2.tar.gz |
Merge branch 'develop' into issue/1383
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/howto_user_recomendation.md | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/docs/configuration/howto_user_recomendation.md b/docs/configuration/howto_user_recomendation.md deleted file mode 100644 index c4d749d0c..000000000 --- a/docs/configuration/howto_user_recomendation.md +++ /dev/null @@ -1,31 +0,0 @@ -# How to activate user recommendation (Who to follow panel) - - -To show the *who to follow* panel, edit `config/prod.secret.exs` in the Pleroma backend. Following code activates the *who to follow* panel: - -```elixir -config :pleroma, :suggestions, - enabled: true, - third_party_engine: - "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}", - timeout: 300_000, - limit: 40, - web: "https://vinayaka.distsn.org" - -``` - -`config/config.exs` already includes this code, but `enabled:` is `false`. - -`/api/v1/suggestions` is also provided when *who to follow* panel is enabled. - -For advanced customization, following code shows the newcomers of the fediverse at the *who to follow* panel: - -```elixir -config :pleroma, :suggestions, - enabled: true, - third_party_engine: - "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-new-suggestions-api.cgi?{{host}}+{{user}}", - timeout: 60_000, - limit: 40, - web: "https://vinayaka.distsn.org/user-new.html" -``` |