From 2687a761cc54f81491428b9016efde3104356bfe Mon Sep 17 00:00:00 2001 From: mario Date: Tue, 13 May 2025 11:47:19 +0700 Subject: [PATCH] add new dummy doctor user --- internal/api/models/mock_data.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/internal/api/models/mock_data.go b/internal/api/models/mock_data.go index 903eef9..786ca64 100644 --- a/internal/api/models/mock_data.go +++ b/internal/api/models/mock_data.go @@ -34,6 +34,14 @@ var MockUsers = []User{ CreatedAt: "2025-01-01T00:00:00Z", UpdatedAt: "2025-01-01T00:00:00Z", }, + { + ID: "5", + Email: "doctor2", + Role: "ref_doctor", + Name: "Referring^Physician", + CreatedAt: "2025-01-01T00:00:00Z", + UpdatedAt: "2025-01-01T00:00:00Z", + }, } // PatientData represents additional data for patients