From 46e5b8a9ccefacefeb3801ba148fe5c1147d706f Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sun, 29 Jan 2017 17:03:12 -0800 Subject: [PATCH] streams: Remove unused json_remove_subscriptions. --- zerver/views/streams.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/zerver/views/streams.py b/zerver/views/streams.py index 6abebdee93..ea2364f793 100644 --- a/zerver/views/streams.py +++ b/zerver/views/streams.py @@ -214,11 +214,6 @@ def compose_views(request, user_profile, method_kwarg_pairs): json_dict.update(ujson.loads(response.content)) return json_success(json_dict) -@authenticated_json_post_view -def json_remove_subscriptions(request, user_profile): - # type: (HttpRequest, UserProfile) -> HttpResponse - return remove_subscriptions_backend(request, user_profile) - @has_request_variables def remove_subscriptions_backend(request, user_profile, streams_raw = REQ("subscriptions", validator=check_list(check_string)),