Merge remote-tracking branch 'upstream/develop' into registration-workflow
authorAlex Gleason <alex@alexgleason.me>
Sun, 15 Nov 2020 01:48:47 +0000 (19:48 -0600)
committerAlex Gleason <alex@alexgleason.me>
Sun, 15 Nov 2020 01:48:47 +0000 (19:48 -0600)
1  2 
CHANGELOG.md
lib/mix/tasks/pleroma/user.ex
lib/pleroma/emails/user_email.ex
lib/pleroma/user.ex
lib/pleroma/web/admin_api/controllers/admin_api_controller.ex
test/mix/tasks/pleroma/user_test.exs
test/pleroma/user_test.exs

diff --cc CHANGELOG.md
index c546dd0bf8b406185c68472da54b2044c95c0acf,63a8fa942283bd5ac26823b6413b630856c01075..f61ccd2c3df529b35166fe746e7ad79db336d9d4
@@@ -12,8 -22,10 +22,10 @@@ The format is based on [Keep a Changelo
  
  ### Changed
  
+ - **Breaking** Requires `libmagic` (or `file`) to guess file types.
  - **Breaking:** Pleroma Admin API: emoji packs and files routes changed.
  - **Breaking:** Sensitive/NSFW statuses no longer disable link previews.
 -- **Breaking:** App metrics endpoint (`/api/pleroma/app_metrics`) is disabled by default, check `docs/API/prometheus.md` on enabling and configuring. 
++- **Breaking:** App metrics endpoint (`/api/pleroma/app_metrics`) is disabled by default, check `docs/API/prometheus.md` on enabling and configuring.
  - Search: Users are now findable by their urls.
  - Renamed `:await_up_timeout` in `:connections_pool` namespace to `:connect_timeout`, old name is deprecated.
  - Renamed `:timeout` in `pools` namespace to `:recv_timeout`, old name is deprecated.
  - Users with the `discoverable` field set to false will not show up in searches.
  - Minimum lifetime for ephmeral activities changed to 10 minutes and made configurable (`:min_lifetime` option).
  - Introduced optional dependencies on `ffmpeg`, `ImageMagick`, `exiftool` software packages. Please refer to `docs/installation/optional/media_graphics_packages.md`.
- ### Added
- - Media preview proxy (requires `ffmpeg` and `ImageMagick` to be installed and media proxy to be enabled; see `:media_preview_proxy` config for more details).
- - Pleroma API: Importing the mutes users from CSV files.
- - Experimental websocket-based federation between Pleroma instances.
 +- Changed `mix pleroma.user toggle_confirmed` to `mix pleroma.user confirm`
+ - Polls now always return a `voters_count`, even if they are single-choice
+ - Admin Emails: The ap id is used as the user link in emails now.
  
  <details>
    <summary>API Changes</summary>
Simple merge
Simple merge
index 0dabb2a1e1dc09ffefedd30958c3bef533dfb8a1,8e4ec8064a2052655776826ff2b40936363afdf1..f93fd7a0c23c03d9e6a28f905f5bcb725b029604
@@@ -772,21 -782,9 +782,22 @@@ defmodule Pleroma.User d
      end
    end
  
 -  def post_register_action(%User{} = user) do
 +  def post_register_action(%User{confirmation_pending: true} = user) do
 +    with {:ok, _} <- try_send_confirmation_email(user) do
 +      {:ok, user}
 +    end
 +  end
 +
 +  def post_register_action(%User{approval_pending: true} = user) do
 +    with {:ok, _} <- send_user_approval_email(user),
 +         {:ok, _} <- send_admin_approval_emails(user) do
 +      {:ok, user}
 +    end
 +  end
 +
 +  def post_register_action(%User{approval_pending: false, confirmation_pending: false} = user) do
      with {:ok, user} <- autofollow_users(user),
+          {:ok, _} <- autofollowing_users(user),
           {:ok, user} <- set_cache(user),
           {:ok, _} <- send_welcome_email(user),
           {:ok, _} <- send_welcome_message(user),
Simple merge
Simple merge