@@ -41,6 +41,7 @@ import OnboardingServices from '../services/onboarding.services.js';
4141import { dbSeedAllParts , dbSeedAllPartTags } from './seed-data/parts.seed.js' ;
4242import FinanceServices from '../services/finance.services.js' ;
4343import CalendarService from '../services/calendar.services.js' ;
44+ import { allChangeRequestsReviewed } from '../utils/change-requests.utils.js' ;
4445
4546const prisma = new PrismaClient ( ) ;
4647
@@ -3890,6 +3891,50 @@ const performSeed: () => Promise<void> = async () => {
38903891 undefined ,
38913892 undefined
38923893 ) ;
3894+
3895+ await RecruitmentServices . createGuestDefinition (
3896+ thomasEmrax ,
3897+ ner ,
3898+ 'Projects' ,
3899+ 'This is the definition of a project. Projects are blah blah blah' ,
3900+ 0 ,
3901+ 'bar_chart' ,
3902+ 'Click here to view all our projects!' ,
3903+ '/projects'
3904+ ) ;
3905+
3906+ await RecruitmentServices . createGuestDefinition (
3907+ thomasEmrax ,
3908+ ner ,
3909+ 'Change Requests' ,
3910+ 'This is the definiton for a change request. Changes requests are blah blah blah' ,
3911+ 0 ,
3912+ 'bar_chart' ,
3913+ 'Click here to view all our change requests!' ,
3914+ '/change-requests'
3915+ ) ;
3916+
3917+ await RecruitmentServices . createGuestDefinition (
3918+ thomasEmrax ,
3919+ ner ,
3920+ 'Gantt Chart' ,
3921+ 'This is the definiton for a change request. Changes requests are blah blah blah' ,
3922+ 0 ,
3923+ 'bar_chart' ,
3924+ 'Click here to view all our projects!' ,
3925+ '/gantt'
3926+ ) ;
3927+
3928+ await RecruitmentServices . createGuestDefinition (
3929+ thomasEmrax ,
3930+ ner ,
3931+ 'Design Reviews' ,
3932+ 'This is the definiton for a design review. Design reviews are blah blah blah' ,
3933+ 0 ,
3934+ 'bar_chart' ,
3935+ 'Click here to view all our design reviews!' ,
3936+ '/design-reviews'
3937+ ) ;
38933938} ;
38943939
38953940performSeed ( )
0 commit comments