260326:1726 Fixing Refactor ADR-019 Naming convention uuid #06
CI / CD Pipeline / build (push) Successful in 15m6s
CI / CD Pipeline / deploy (push) Successful in 8m56s

This commit is contained in:
admin
2026-03-26 17:26:28 +07:00
parent 29922aec1f
commit 25ea2fcd0f
25 changed files with 65 additions and 61 deletions
+3 -3
View File
@@ -3,7 +3,7 @@ import { NotificationResponse } from '@/types/notification';
// Mock Data
let mockNotifications = [
{
uuid: '019575a0-0001-7000-8000-000000000001',
publicId: '019575a0-0001-7000-8000-000000000001',
notificationId: 1,
title: 'RFA Approved',
message: 'RFA-001 has been approved by the Project Manager.',
@@ -13,7 +13,7 @@ let mockNotifications = [
link: '/rfas/1',
},
{
uuid: '019575a0-0002-7000-8000-000000000002',
publicId: '019575a0-0002-7000-8000-000000000002',
notificationId: 2,
title: 'New Correspondence',
message: 'You have received a new correspondence from Contractor A.',
@@ -23,7 +23,7 @@ let mockNotifications = [
link: '/correspondences/3',
},
{
uuid: '019575a0-0003-7000-8000-000000000003',
publicId: '019575a0-0003-7000-8000-000000000003',
notificationId: 3,
title: 'Drawing Revision Required',
message: 'Drawing S-201 requires revision based on recent comments.',
+1 -1
View File
@@ -21,7 +21,7 @@ export interface NumberingTemplate {
id: number | string;
projectCode: string;
projectName: string;
uuid?: string;
publicId?: string; // ADR-019: exposed as 'id' in API responses
};
formatTemplate: string;
disciplineId: number;