logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 3eaa5335c97e0b2697a692614d73897092df0d58
parent d9732fb7d318a7a56f2b82478b13fd5d694eb630
Author: Mark Felder <feld@FreeBSD.org>
Date:   Tue, 17 Nov 2020 21:37:17 +0000

Revert adding extra alert types here

Diffstat:

Mtest/pleroma/web/mastodon_api/controllers/subscription_controller_test.exs11+----------
1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/test/pleroma/web/mastodon_api/controllers/subscription_controller_test.exs b/test/pleroma/web/mastodon_api/controllers/subscription_controller_test.exs @@ -176,16 +176,7 @@ defmodule Pleroma.Web.MastodonAPI.SubscriptionControllerTest do test "returns error when push disabled ", %{conn: conn} do assert_error_when_disable_push do conn - |> put("/api/v1/push/subscription", %{ - data: %{ - "mention" => false, - "favourite" => false, - "follow" => false, - "reblog" => false, - "pleroma:chat_mention" => false, - "pleroma:emoji_reaction" => false - } - }) + |> put("/api/v1/push/subscription", %{data: %{"alerts" => %{"mention" => false}}}) |> json_response_and_validate_schema(403) end end