-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix trainee dashboard #381
base: develop
Are you sure you want to change the base?
Conversation
07c8341
to
22ff34b
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #381 +/- ##
==========================================
Coverage ? 16.57%
==========================================
Files ? 89
Lines ? 3560
Branches ? 1008
==========================================
Hits ? 590
Misses ? 2961
Partials ? 9 ☔ View full report in Codecov by Sentry. |
22ff34b
to
45c4fe3
Compare
45c4fe3
to
0f45417
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Speak to Shema about my first comment.
src/schema/index.ts
Outdated
type traineeAttendanceWeek { | ||
week: Int! | ||
weekAverage: String! | ||
daysStatus: AttendanceDates! | ||
} | ||
|
||
type traineeAttendancePhase { | ||
phase: Phase! | ||
phaseAverage: String! | ||
weeks: [traineeAttendanceWeek]! | ||
} | ||
|
||
type traineeAttendance { | ||
traineeId: String! | ||
teamName: String! | ||
allPhasesAverage: String! | ||
phases: [traineeAttendancePhase]! | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it necessary to break these into separate types?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should go to the team that has been working on attendance as i never altered any of these types and i think if i do alter or combine these types it might affect their work. Thanks
0f45417
to
4ad8271
Compare
4ad8271
to
0c0355d
Compare
0c0355d
to
c2d136a
Compare
c2d136a
to
1eab8b2
Compare
PR Description
extending rating schema to include createdAt and updatedAt attributes
Description of tasks that were expected to be completed
simply added createdAt and updatedAt on the Rating schema