mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 17:43:03 +03:00
7cc90ef258
* feat: add notification controller * feat: add polling logic on pending notifications * feat: refecth notifications on Feed
25 lines
491 B
Python
25 lines
491 B
Python
from uuid import UUID
|
|
|
|
from auth import AuthBearer
|
|
from fastapi import APIRouter, Depends
|
|
from repository.notification.get_chat_notifications import (
|
|
get_chat_notifications,
|
|
)
|
|
|
|
notification_router = APIRouter()
|
|
|
|
|
|
@notification_router.get(
|
|
"/notifications/{chat_id}",
|
|
dependencies=[Depends(AuthBearer())],
|
|
tags=["Notification"],
|
|
)
|
|
async def get_notifications(
|
|
chat_id: UUID,
|
|
):
|
|
"""
|
|
Get notifications by chat_id
|
|
"""
|
|
|
|
return get_chat_notifications(chat_id)
|