mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
Edited by tabbott to remove state.py and streams.py, because of problems with the original PR's changes, and wrap some long lines.
19 lines
739 B
Python
19 lines
739 B
Python
from django.http import HttpRequest, HttpResponse
|
|
|
|
from zerver.models import UserProfile
|
|
from zerver.lib.validator import check_int
|
|
from zerver.lib.response import json_success
|
|
from zerver.lib.attachments import user_attachments, remove_attachment, \
|
|
access_attachment_by_id
|
|
|
|
|
|
def list_by_user(request: HttpRequest, user_profile: UserProfile) -> HttpResponse:
|
|
return json_success({"attachments": user_attachments(user_profile)})
|
|
|
|
|
|
def remove(request: HttpRequest, user_profile: UserProfile, attachment_id: int) -> HttpResponse:
|
|
attachment = access_attachment_by_id(user_profile, attachment_id,
|
|
needs_owner=True)
|
|
remove_attachment(user_profile, attachment)
|
|
return json_success()
|