forked from Code-4-Community/scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Calculate mean ratings across stages (#63)
* feat: getAllAplications endpoint resolves #44 * made Cycle fields private, and created env vars for year/semester * Application Summary DTO * feat: completed getAllApplications endpoint * fix: updated semester logic * fix: updated current semester function and dto mapping * mean rating test * modified mean ratings dto * code cleanup --------- Co-authored-by: OJisMe <[email protected]> Co-authored-by: Jonathan Chen <[email protected]> Co-authored-by: Harrison Kim <[email protected]>
- Loading branch information
1 parent
f5fdd58
commit d684416
Showing
8 changed files
with
123 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +0,0 @@ | ||
export enum Stage { | ||
ROUND_ONE = 'ROUND_ONE', | ||
ROUND_TWO = 'ROUND_TWO', | ||
ROUND_THREE = 'ROUND_THREE', | ||
} | ||
|
||
export enum Rating { | ||
STRONG_YES = 'STRONG_YES', | ||
YES = 'YES', | ||
NEUTRAL = 'NEUTRAL', | ||
NO = 'NO', | ||
STRONG = 'STRONG', | ||
} | ||