@@ -22,7 +22,15 @@ import { dbSeedAllTeams } from './seed-data/teams.seed.js';
2222import { seedReimbursementRequests } from './seed-data/reimbursement-requests.seed.js' ;
2323import ChangeRequestsService from '../services/change-requests.services.js' ;
2424import TeamsService from '../services/teams.services.js' ;
25- import { DayOfWeek , MaterialStatus , RoleEnum , StandardChangeRequest , WbsElementStatus , WorkPackageStage } from 'shared' ;
25+ import {
26+ DayOfWeek ,
27+ GuestDefinitionType ,
28+ MaterialStatus ,
29+ RoleEnum ,
30+ StandardChangeRequest ,
31+ WbsElementStatus ,
32+ WorkPackageStage
33+ } from 'shared' ;
2634import TasksService from '../services/tasks.services.js' ;
2735import { seedProject } from './seed-data/projects.seed.js' ;
2836import { seedWorkPackage } from './seed-data/work-packages.seed.js' ;
@@ -5120,6 +5128,7 @@ const performSeed: () => Promise<void> = async () => {
51205128 term : 'NER' ,
51215129 description : 'A really awesome organization!' ,
51225130 order : 0 ,
5131+ type : 'INFO_PAGE' ,
51235132 organizationId,
51245133 userCreatedId : batman . userId
51255134 }
@@ -5131,6 +5140,7 @@ const performSeed: () => Promise<void> = async () => {
51315140 'Projects' ,
51325141 'This is the definition of a project. Projects are blah blah blah' ,
51335142 0 ,
5143+ GuestDefinitionType . PROJECT_MANAGEMENT ,
51345144 'bar_chart' ,
51355145 'Click here to view all our projects!' ,
51365146 '/projects'
@@ -5142,6 +5152,7 @@ const performSeed: () => Promise<void> = async () => {
51425152 'Change Requests' ,
51435153 'This is the definiton for a change request. Changes requests are blah blah blah' ,
51445154 0 ,
5155+ GuestDefinitionType . PROJECT_MANAGEMENT ,
51455156 'bar_chart' ,
51465157 'Click here to view all our change requests!' ,
51475158 '/change-requests'
@@ -5153,6 +5164,7 @@ const performSeed: () => Promise<void> = async () => {
51535164 'Gantt Chart' ,
51545165 'This is the definiton for a change request. Changes requests are blah blah blah' ,
51555166 0 ,
5167+ GuestDefinitionType . PROJECT_MANAGEMENT ,
51565168 'bar_chart' ,
51575169 'Click here to view all our projects!' ,
51585170 '/gantt'
@@ -5164,6 +5176,7 @@ const performSeed: () => Promise<void> = async () => {
51645176 'Design Reviews' ,
51655177 'This is the definiton for a design review. Design reviews are blah blah blah' ,
51665178 0 ,
5179+ GuestDefinitionType . PROJECT_MANAGEMENT ,
51675180 'bar_chart' ,
51685181 'Click here to view all our design reviews!' ,
51695182 '/design-reviews'
0 commit comments