update changelog

This commit is contained in:
Maksim Pechnikov 2020-09-25 16:50:47 +03:00
parent 51189ad365
commit add26817e3
2 changed files with 25 additions and 19 deletions

View File

@ -32,6 +32,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Pleroma API: Importing the mutes users from CSV files.
- Admin API: Importing emoji from a zip file
- Pleroma API: Pagination for remote/local packs and emoji.
- Admin API: (`GET /api/pleroma/admin/users`) added filters user by `unconfirmed` status
- Admin API: (`GET /api/pleroma/admin/users`) added filters user by `actor_type`
</details>

View File

@ -671,9 +671,9 @@ defmodule Pleroma.Web.AdminAPI.UserControllerTest do
conn = get(conn, "/api/pleroma/admin/users?filters=need_approval")
users =
[
user_response(user,
users = [
user_response(
user,
%{"approval_pending" => true, "registration_reason" => "Plz let me in!"}
)
]
@ -738,7 +738,8 @@ defmodule Pleroma.Web.AdminAPI.UserControllerTest do
user1 = insert(:user)
user2 = insert(:user)
response = conn
response =
conn
|> get(user_path(conn, :list), %{actor_types: ["Person"]})
|> json_response(200)
@ -760,7 +761,8 @@ defmodule Pleroma.Web.AdminAPI.UserControllerTest do
user1 = insert(:user)
user2 = insert(:user)
response = conn
response =
conn
|> get(user_path(conn, :list), %{actor_types: ["Person", "Service"]})
|> json_response(200)
@ -782,9 +784,11 @@ defmodule Pleroma.Web.AdminAPI.UserControllerTest do
insert(:user)
insert(:user)
response = conn
response =
conn
|> get(user_path(conn, :list), %{actor_types: ["Service"]})
|> json_response(200)
users = [user_response(user_service, %{"actor_type" => "Service"})]
assert response == %{"count" => 1, "page_size" => 50, "users" => users}