quivr/backend/repository/notification/remove_chat_notifications.py
Mamadou DICKO 9464707d40
feat: merge chat history with chat notifications (#1127)
* feat: add chat_id to upload and crawl payload

* feat(chat): return chat_history_with_notifications

* feat: explicit notification status on create

* feat: handle notifications in frontend

* feat: delete chat notifications on chat delete request
2023-09-07 17:23:31 +02:00

12 lines
272 B
Python

from uuid import UUID
from models.settings import get_supabase_db
def remove_chat_notifications(chat_id: UUID) -> None:
"""
Remove all notifications for a chat
"""
supabase_db = get_supabase_db()
supabase_db.remove_notifications_by_chat_id(chat_id)