@@ -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
@@ -277,6 +278,7 @@ const performSeed: () => Promise<void> = async () => {
277278 const pearl = await createUser ( dbSeedAllUsers . pearl , RoleEnum . LEADERSHIP , organizationId ) ;
278279 const larry = await createUser ( dbSeedAllUsers . larry , RoleEnum . LEADERSHIP , organizationId ) ;
279280 const mrsPuff = await createUser ( dbSeedAllUsers . mrsPuff , RoleEnum . LEADERSHIP , organizationId ) ;
281+ await createUser ( dbSeedAllUsers . guestUser , RoleEnum . GUEST , organizationId ) ;
280282
281283 await UsersService . updateUserRole ( cyborg . userId , thomasEmrax , 'APP_ADMIN' , ner ) ;
282284
@@ -380,21 +382,15 @@ const performSeed: () => Promise<void> = async () => {
380382 const mechanical = await TeamsService . createTeamType (
381383 batman ,
382384 'Mechanical' ,
383- 'YouTubeIcon ' ,
385+ 'Construction ' ,
384386 'This is the mechanical team' ,
385387 ner
386388 ) ;
387- const software = await TeamsService . createTeamType (
388- thomasEmrax ,
389- 'Software' ,
390- 'InstagramIcon' ,
391- 'This is the software team' ,
392- ner
393- ) ;
389+ const software = await TeamsService . createTeamType ( thomasEmrax , 'Software' , 'Code' , 'This is the software team' , ner ) ;
394390 const electrical = await TeamsService . createTeamType (
395391 cyborg ,
396392 'Electrical' ,
397- 'SettingsIcon ' ,
393+ 'ElectricBolt ' ,
398394 'This is the electrical team' ,
399395 ner
400396 ) ;
@@ -579,15 +575,22 @@ const performSeed: () => Promise<void> = async () => {
579575 ) ;
580576
581577 /** Link Types */
582- const confluenceLinkType = await ProjectsService . createLinkType ( batman , 'Confluence' , 'description' , true , ner ) ;
578+ const confluenceLinkType = await ProjectsService . createLinkType ( batman , 'Confluence' , 'description' , true , ner , false ) ;
583579
584- const bomLinkType = await ProjectsService . createLinkType ( batman , 'Bill of Materials' , 'bar_chart' , true , ner ) ;
580+ const bomLinkType = await ProjectsService . createLinkType ( batman , 'Bill of Materials' , 'bar_chart' , true , ner , false ) ;
585581
586- const mainWebsiteLinkType = await ProjectsService . createLinkType ( batman , 'NER Website' , 'bar_chart' , true , ner ) ;
582+ const mainWebsiteLinkType = await ProjectsService . createLinkType ( batman , 'NER Website' , 'bar_chart' , true , ner , false ) ;
587583
588- const instagramWebsiteLinkType = await ProjectsService . createLinkType ( batman , 'NER Instagram' , 'bar_chart' , true , ner ) ;
584+ const instagramWebsiteLinkType = await ProjectsService . createLinkType (
585+ batman ,
586+ 'NER Instagram' ,
587+ 'bar_chart' ,
588+ true ,
589+ ner ,
590+ false
591+ ) ;
589592
590- await ProjectsService . createLinkType ( batman , 'Google Drive' , 'folder' , true , ner ) ;
593+ await ProjectsService . createLinkType ( batman , 'Google Drive' , 'folder' , true , ner , false ) ;
591594
592595 /**
593596 * Projects
0 commit comments