|
| 1 | +/* |
| 2 | + * This file is part of NER's FinishLine and licensed under GNU AGPLv3. |
| 3 | + * See the LICENSE file in the repository root folder for details. |
| 4 | + */ |
| 5 | + |
| 6 | +import { DesignReview, DesignReviewStatus, TeamType } from 'shared'; |
| 7 | +import { exampleAdminUser, exampleAppAdminUser } from './users.stub'; |
| 8 | +import { exampleWbsProject1 } from './wbs-numbers.stub'; |
| 9 | + |
| 10 | +export const teamType1: TeamType = { |
| 11 | + teamTypeId: '1', |
| 12 | + iconName: 'YouTubeIcon', |
| 13 | + name: 'teamType1' |
| 14 | +}; |
| 15 | + |
| 16 | +export const exampleDesignReview1: DesignReview = { |
| 17 | + designReviewId: '1', |
| 18 | + dateScheduled: new Date('2024-03-25'), |
| 19 | + meetingTimes: [0, 1, 2, 3], |
| 20 | + dateCreated: new Date('2024-03-10'), |
| 21 | + userCreated: exampleAdminUser, |
| 22 | + status: DesignReviewStatus.CONFIRMED, |
| 23 | + teamType: teamType1, |
| 24 | + requiredMembers: [exampleAdminUser], |
| 25 | + optionalMembers: [], |
| 26 | + confirmedMembers: [exampleAdminUser], |
| 27 | + deniedMembers: [], |
| 28 | + isOnline: true, |
| 29 | + isInPerson: false, |
| 30 | + attendees: [exampleAdminUser], |
| 31 | + wbsName: '1', |
| 32 | + wbsNum: exampleWbsProject1 |
| 33 | +}; |
| 34 | + |
| 35 | +export const exampleDesignReview2: DesignReview = { |
| 36 | + designReviewId: '2', |
| 37 | + dateScheduled: new Date('2024-03-25'), |
| 38 | + meetingTimes: [0, 4], |
| 39 | + dateCreated: new Date('2024-03-10'), |
| 40 | + userCreated: exampleAppAdminUser, |
| 41 | + status: DesignReviewStatus.CONFIRMED, |
| 42 | + teamType: teamType1, |
| 43 | + requiredMembers: [exampleAppAdminUser], |
| 44 | + optionalMembers: [], |
| 45 | + confirmedMembers: [exampleAppAdminUser], |
| 46 | + deniedMembers: [], |
| 47 | + isOnline: false, |
| 48 | + isInPerson: true, |
| 49 | + attendees: [exampleAppAdminUser], |
| 50 | + wbsName: '1', |
| 51 | + wbsNum: exampleWbsProject1 |
| 52 | +}; |
| 53 | + |
| 54 | +export const exampleAllDesignReviews: DesignReview[] = [exampleDesignReview1, exampleDesignReview2]; |
0 commit comments