wisdom #23

Merged
bragaz_rexita merged 2 commits from wisdom into main 2026-01-05 07:06:17 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 402c1c0705 - Show all commits

View File

@@ -165,7 +165,9 @@ const getUsersNotificationErrorDb = async (id) => {
a.notification_error_user_id,
a.contact_phone,
a.contact_name,
c.is_active
c.is_active,
c.is_read,
c.updated_at
FROM notification_error_user a

View File

@@ -75,7 +75,7 @@ const getNotificationErrorByIdDb = async (notification_error_id) => {
const queryText = `
SELECT
a.*,
b. is_active as contact_is_active,
b.is_active as contact_is_active,
c.is_read
FROM notification_error_user a