-
Notifications
You must be signed in to change notification settings - Fork 1
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/student work metrics #199
Conversation
totalCount := work.CommitAmount | ||
|
||
// Zero either implies bad data or no commits, double check to be safe | ||
if totalCount == 0 { |
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 like the thought behind this sanity check, but it doesn't seem like it does anything to fix the bad state once you recognize that there may be something wrong with the commit data.
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.
it updates it now!
backend/internal/handlers/classrooms/assignments/works/works.go
Outdated
Show resolved
Hide resolved
backend/internal/handlers/classrooms/assignments/works/works.go
Outdated
Show resolved
Hide resolved
|
||
// Zero either implies bad data or no commits, double check to be safe | ||
if totalCount == 0 { | ||
fmt.Println("Needed to get from place") |
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.
grr
fcd := work.FirstCommitDate | ||
|
||
if fcd == nil { | ||
fmt.Println("Needed to get from place") |
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.
gah
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.
Overall good. Small edge case with the single commit causing the graph to show the same date 2 times.
…ts/khoury-classroom-plugin into fix/student-work-metrics
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.
W changes
Checklist