add assignedTo field to notifications

This commit is contained in:
2025-05-06 10:04:06 +05:30
parent aeda2b60a1
commit f224d05a36
2 changed files with 42 additions and 11 deletions

View File

@@ -13,12 +13,16 @@ export async function createNotification(
input: CreateNotificationInput,
tenantId: string
) {
return await notificationModel.create({
const notification = await notificationModel.create({
...input,
pid: generateId(),
tenantId: tenantId,
createdAt: new Date(),
});
return await notificationModel
.findOne({ pid: notification.pid })
.populate({ path: "assignedTo", select: "pid name avatar" });
}
export async function updateNotification(
@@ -26,14 +30,16 @@ export async function updateNotification(
input: UpdateNotificationInput,
tenantId: string
) {
return await notificationModel.findOneAndUpdate(
{ $and: [{ tenantId: tenantId }, { pid: notifId }] },
{
...input,
updatedAt: new Date(),
},
{ new: true }
);
return await notificationModel
.findOneAndUpdate(
{ $and: [{ tenantId: tenantId }, { pid: notifId }] },
{
...input,
updatedAt: new Date(),
},
{ new: true }
)
.populate({ path: "assignedTo", select: "pid name avatar" });
}
export async function listNotifications(
@@ -62,6 +68,14 @@ export async function listNotifications(
pipeline.push(
...[
{
$lookup: {
from: "users",
localField: "assignedTo",
foreignField: "_id",
as: "assignedTo",
},
},
{
$project: {
_id: 1,
@@ -78,6 +92,17 @@ export async function listNotifications(
clientData: 1,
createdAt: 1,
updatedAt: 1,
assignedTo: {
$let: {
vars: { assignedTo: { $arrayElemAt: ["$assignedTo", 0] } },
in: {
_id: "$$assignedTo._id",
pid: "$$assignedTo.pid",
name: "$$assignedTo.name",
avatar: "$$assignedTo.avatar",
},
},
},
},
},
{