You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: backend/prisma/seed.ts
+47-7Lines changed: 47 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -793,26 +793,26 @@ async function main() {
793
793
description:
794
794
'Quarterly survey to assess member satisfaction and gather feedback on our services.',
795
795
isPublished: true,
796
-
isActive: true,
797
-
status: 'ACTIVE'asconst,
796
+
isActive: false,
797
+
status: 'CLOSED'asconst,
798
798
dueDate: newDate('2024-09-30'),
799
799
},
800
800
{
801
801
title: 'Q4 2024 Member Satisfaction Survey',
802
802
description:
803
803
'Quarterly survey to assess member satisfaction and gather feedback on our services.',
804
804
isPublished: true,
805
-
isActive: true,
806
-
status: 'ACTIVE'asconst,
805
+
isActive: false,
806
+
status: 'CLOSED'asconst,
807
807
dueDate: newDate('2024-12-31'),
808
808
},
809
809
{
810
810
title: 'Q1 2025 Member Satisfaction Survey',
811
811
description:
812
812
'Quarterly survey to assess member satisfaction and gather feedback on our services.',
813
-
isPublished: false,
814
-
isActive: false,
815
-
status: 'DRAFT'asconst,
813
+
isPublished: true,
814
+
isActive: true,
815
+
status: 'ACTIVE'asconst,
816
816
dueDate: newDate('2025-03-31'),
817
817
},
818
818
{
@@ -915,6 +915,46 @@ async function main() {
915
915
isPublished: true,
916
916
publishedDate: newDate('2024-07-05'),
917
917
},
918
+
{
919
+
title: 'Emergency: Power Outages Across East Tennessee',
920
+
content:
921
+
'<p>Widespread power outages have been reported across East Tennessee due to severe storms. Emergency shelters have been opened in Johnson City, Knoxville, and Chattanooga. Please check on elderly neighbors and ensure vulnerable seniors have access to cooling centers and emergency supplies.</p>',
922
+
priority: 'URGENT'asconst,
923
+
isPublished: true,
924
+
publishedDate: newDate('2024-07-15'),
925
+
},
926
+
{
927
+
title: 'Medication Disposal Event This Weekend',
928
+
content:
929
+
'<p>Free medication disposal events will be held at participating pharmacies across Tennessee this Saturday. Seniors can safely dispose of expired or unused medications. Check our website for locations near you.</p>',
930
+
priority: 'MEDIUM'asconst,
931
+
isPublished: true,
932
+
publishedDate: newDate('2024-08-01'),
933
+
},
934
+
{
935
+
title: 'New Transportation Service Available in West Tennessee',
936
+
content:
937
+
'<p>A new transportation service for seniors has launched in West Tennessee, providing rides to medical appointments, grocery stores, and community centers. Service is available Monday through Friday. Contact your local Area Agency on Aging for more information.</p>',
938
+
priority: 'LOW'asconst,
939
+
isPublished: true,
940
+
publishedDate: newDate('2024-08-10'),
941
+
},
942
+
{
943
+
title: 'Flu Vaccine Shortage Warning',
944
+
content:
945
+
'<p>Health officials are warning of a potential flu vaccine shortage this season. We urge member organizations to help seniors schedule appointments early. High-dose vaccines for seniors aged 65+ may be especially limited. Contact healthcare providers now to ensure availability.</p>',
946
+
priority: 'URGENT'asconst,
947
+
isPublished: true,
948
+
publishedDate: newDate('2024-09-05'),
949
+
},
950
+
{
951
+
title: 'Updated Newsletter Format Coming in October',
952
+
content:
953
+
'<p>Starting in October, our monthly newsletter will feature a new design with easier navigation and mobile-friendly formatting. Members can preview the new layout on our website. Feedback is welcome as we continue to improve our communications.</p>',
0 commit comments