@@ -125,10 +125,11 @@ const performSeed: () => Promise<void> = async () => {
125125 userCreatedId : thomasEmrax . userId ,
126126 description :
127127 'Northeastern Electric Racing is a student-run organization at Northeastern University building all-electric formula-style race cars from scratch to compete in Forumla Hybrid + Electric Formula SAE (FSAE).' ,
128- applyInterestImageId : '1_iak6ord4JP9TcR1sOYopyEs6EjTKQpw' ,
129- exploreAsGuestImageId : '1wRes7V_bMm9W7_3JCIDXYkMUiy6B3wRI' ,
130128 applicationLink :
131- 'https://docs.google.com/forms/d/e/1FAIpQLSeCvG7GqmZm_gmSZiahbVTW9ZFpEWG0YfGQbkSB_whhHzxXpA/closedform'
129+ 'https://docs.google.com/forms/d/e/1FAIpQLSeCvG7GqmZm_gmSZiahbVTW9ZFpEWG0YfGQbkSB_whhHzxXpA/closedform' ,
130+ platformDescription :
131+ 'Finishline is a Project Management Dashboard developed by the Software Team at Northeastern Electric Racing.' ,
132+ platformLogoImageId : '1auQO3GYydZOo1-vCn0D2iyCfaxaVFssx'
132133 }
133134 } ) ;
134135
@@ -264,6 +265,7 @@ const performSeed: () => Promise<void> = async () => {
264265 const regina = await createUser ( dbSeedAllUsers . regina , RoleEnum . MEMBER , organizationId ) ;
265266 const patrick = await createUser ( dbSeedAllUsers . patrick , RoleEnum . MEMBER , organizationId ) ;
266267 const spongebob = await createUser ( dbSeedAllUsers . spongebob , RoleEnum . MEMBER , organizationId ) ;
268+ await createUser ( dbSeedAllUsers . guestUser , RoleEnum . GUEST , organizationId ) ;
267269
268270 await UsersService . updateUserRole ( cyborg . userId , thomasEmrax , 'APP_ADMIN' , ner ) ;
269271
@@ -367,21 +369,15 @@ const performSeed: () => Promise<void> = async () => {
367369 const mechanical = await TeamsService . createTeamType (
368370 batman ,
369371 'Mechanical' ,
370- 'YouTubeIcon ' ,
372+ 'Construction ' ,
371373 'This is the mechanical team' ,
372374 ner
373375 ) ;
374- const software = await TeamsService . createTeamType (
375- thomasEmrax ,
376- 'Software' ,
377- 'InstagramIcon' ,
378- 'This is the software team' ,
379- ner
380- ) ;
376+ const software = await TeamsService . createTeamType ( thomasEmrax , 'Software' , 'Code' , 'This is the software team' , ner ) ;
381377 const electrical = await TeamsService . createTeamType (
382378 cyborg ,
383379 'Electrical' ,
384- 'SettingsIcon ' ,
380+ 'ElectricBolt ' ,
385381 'This is the electrical team' ,
386382 ner
387383 ) ;
@@ -551,15 +547,22 @@ const performSeed: () => Promise<void> = async () => {
551547 ) ;
552548
553549 /** Link Types */
554- const confluenceLinkType = await ProjectsService . createLinkType ( batman , 'Confluence' , 'description' , true , ner ) ;
550+ const confluenceLinkType = await ProjectsService . createLinkType ( batman , 'Confluence' , 'description' , true , ner , false ) ;
555551
556- const bomLinkType = await ProjectsService . createLinkType ( batman , 'Bill of Materials' , 'bar_chart' , true , ner ) ;
552+ const bomLinkType = await ProjectsService . createLinkType ( batman , 'Bill of Materials' , 'bar_chart' , true , ner , false ) ;
557553
558- const mainWebsiteLinkType = await ProjectsService . createLinkType ( batman , 'NER Website' , 'bar_chart' , true , ner ) ;
554+ const mainWebsiteLinkType = await ProjectsService . createLinkType ( batman , 'NER Website' , 'bar_chart' , true , ner , false ) ;
559555
560- const instagramWebsiteLinkType = await ProjectsService . createLinkType ( batman , 'NER Instagram' , 'bar_chart' , true , ner ) ;
556+ const instagramWebsiteLinkType = await ProjectsService . createLinkType (
557+ batman ,
558+ 'NER Instagram' ,
559+ 'bar_chart' ,
560+ true ,
561+ ner ,
562+ false
563+ ) ;
561564
562- await ProjectsService . createLinkType ( batman , 'Google Drive' , 'folder' , true , ner ) ;
565+ await ProjectsService . createLinkType ( batman , 'Google Drive' , 'folder' , true , ner , false ) ;
563566
564567 /**
565568 * Projects
0 commit comments