archive: Remove non-functional archive code.

This removes a bunch of non-functional duplicate JavaScript, HTML, and
CSS that was interfering with maintenance on the functional originals,
because it was never clear how to update the duplicates or how to
check that you’d updated the duplicates correctly.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2021-07-27 13:45:06 -07:00
committed by Anders Kaseorg
parent 3531463ac9
commit 17749cb608
14 changed files with 2 additions and 599 deletions

View File

@@ -7298,7 +7298,7 @@ def get_occupied_streams(realm: Realm) -> QuerySet:
return occupied_streams
def get_web_public_streams(realm: Realm) -> List[Dict[str, Any]]:
def get_web_public_streams(realm: Realm) -> List[Dict[str, Any]]: # nocoverage
query = Stream.objects.filter(realm=realm, deactivated=False, is_web_public=True)
streams = Stream.get_client_data(query)
return streams