Corrected the spell mistake in firebase keywords
This commit is contained in:
parent
7d30831408
commit
a0789f7f8e
@ -1581,7 +1581,7 @@ namespace Marco.Pms.Services.Service
|
||||
|
||||
var data = new Dictionary<string, string>()
|
||||
{
|
||||
{ "Keyword", "Expenses_Modefied" },
|
||||
{ "Keyword", "Expenses_Modified" },
|
||||
{ "ExpenseId", expenses.Id.ToString() }
|
||||
};
|
||||
|
||||
@ -1660,7 +1660,7 @@ namespace Marco.Pms.Services.Service
|
||||
|
||||
var data = new Dictionary<string, string>()
|
||||
{
|
||||
{ "Keyword", "Contact_Modefied" }
|
||||
{ "Keyword", "Contact_Modified" }
|
||||
};
|
||||
|
||||
var registrationTokensForNotification = await _context.FCMTokenMappings.Where(ft => assignedEmployeeIds.Contains(ft.EmployeeId) && ft.ExpiredAt >= DateTime.UtcNow).Select(ft => ft.FcmToken).ToListAsync();
|
||||
@ -1703,7 +1703,7 @@ namespace Marco.Pms.Services.Service
|
||||
|
||||
var data = new Dictionary<string, string>()
|
||||
{
|
||||
{ "Keyword", "Contact_Note_Modefied" }
|
||||
{ "Keyword", "Contact_Note_Modified" }
|
||||
};
|
||||
|
||||
var registrationTokensForNotification = await _context.FCMTokenMappings.Where(ft => assignedEmployeeIds.Contains(ft.EmployeeId) && ft.ExpiredAt >= DateTime.UtcNow).Select(ft => ft.FcmToken).ToListAsync();
|
||||
@ -1746,7 +1746,7 @@ namespace Marco.Pms.Services.Service
|
||||
|
||||
var data = new Dictionary<string, string>()
|
||||
{
|
||||
{ "Keyword", "Bucket_Modefied" }
|
||||
{ "Keyword", "Bucket_Modified" }
|
||||
};
|
||||
|
||||
var registrationTokensForNotification = await _context.FCMTokenMappings.Where(ft => assignedEmployeeIds.Contains(ft.EmployeeId) && ft.ExpiredAt >= DateTime.UtcNow).Select(ft => ft.FcmToken).ToListAsync();
|
||||
@ -1777,7 +1777,7 @@ namespace Marco.Pms.Services.Service
|
||||
|
||||
var data = new Dictionary<string, string>()
|
||||
{
|
||||
{ "Keyword", "Employee_Document_Modefied" }
|
||||
{ "Keyword", "Employee_Document_Modified" }
|
||||
};
|
||||
|
||||
var registrationTokensForNotification = await _context.FCMTokenMappings.Where(ft => ft.EmployeeId == employeeId && ft.ExpiredAt >= DateTime.UtcNow).Select(ft => ft.FcmToken).ToListAsync();
|
||||
@ -1833,7 +1833,7 @@ namespace Marco.Pms.Services.Service
|
||||
|
||||
var data = new Dictionary<string, string>()
|
||||
{
|
||||
{ "Keyword", "Project_Document_Modefied" }
|
||||
{ "Keyword", "Project_Document_Modified" }
|
||||
};
|
||||
|
||||
var registrationTokensForNotification = await _context.FCMTokenMappings.Where(ft => finalEmployeeIds.Contains(ft.EmployeeId) && ft.ExpiredAt >= DateTime.UtcNow).Select(ft => ft.FcmToken).ToListAsync();
|
||||
|
Loading…
x
Reference in New Issue
Block a user