Skip to content
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

Feat: Add Spring 2024 courses #513

Merged
merged 4 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions __seed__/data/courses.js
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,24 @@ module.exports = [
avgStaffSupport: null,
reviewsCountsByYearSem: {},
},
{
courseId: 'CS-8803-O21',
numReviews: 0,
avgWorkload: null,
avgDifficulty: null,
avgOverall: null,
avgStaffSupport: null,
reviewsCountsByYearSem: {},
},
{
courseId: 'CS-8803-O22',
numReviews: 0,
avgWorkload: null,
avgDifficulty: null,
avgOverall: null,
avgStaffSupport: null,
reviewsCountsByYearSem: {},
},
{
courseId: 'CS-8803-OC1',
numReviews: 7,
Expand Down
2 changes: 2 additions & 0 deletions firebase/utilityFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ export const mapCourseToLegacyNumReviews: TMapCourseToLegacyNumReviews = {
'CS-8803-O15': 0,
'CS-8803-O16': 0,
'CS-8803-O17': 0,
'CS-8803-O21': 0,
'CS-8803-O22': 0,
'CS-8803-OC1': 7,
'CS-8813': 0,
'CSE-6040': 110,
Expand Down
22 changes: 21 additions & 1 deletion globals/staticDataModels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,26 @@ export const coursesDataStatic: TPayloadCoursesDataStatic = {
isDeprecated: false,
isFoundational: false,
},
'CS-8803-O21': {
courseId: 'CS-8803-O21',
name: 'GPU Hardware and Software',
departmentId: 'CS',
courseNumber: '8803-O21',
url: 'https://omscs.gatech.edu/cs-8803-o21-gpu-hardware-and-software',
aliases: ['GPU'],
isDeprecated: false,
isFoundational: true,
},
'CS-8803-O22': {
courseId: 'CS-8803-O22',
name: 'Security Incident Response',
departmentId: 'CS',
courseNumber: '8803-O22',
url: 'https://omscs.gatech.edu/cs-8803-o22-security-incident-response',
aliases: ['SIR'],
isDeprecated: false,
isFoundational: false,
},
'CS-8803-OC1': {
courseId: 'CS-8803-OC1',
name: 'Security Operations and Incidence Response',
Expand Down Expand Up @@ -1208,7 +1228,7 @@ export const coursesDataStatic: TPayloadCoursesDataStatic = {
departmentId: 'MGT',
courseNumber: '8813',
url: null,
aliases: ['FM'],
aliases: ['FM', 'FMX'],
isDeprecated: false,
isFoundational: false,
},
Expand Down
4 changes: 4 additions & 0 deletions globals/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,8 @@ export type TCourseId =
| 'CS-8803-O15'
| 'CS-8803-O16'
| 'CS-8803-O17'
| 'CS-8803-O21'
| 'CS-8803-O22'
| 'CS-8803-OC1'
| 'CS-8813'
| 'CSE-6040'
Expand Down Expand Up @@ -526,6 +528,8 @@ export type TCourseName =
| 'Introduction to Computing Law'
| 'Digital Health Equity'
| 'Global Entrepreneurship'
| 'GPU Hardware and Software'
| 'Security Incident Response'
| 'Security Operations and Incidence Response'
| 'Malware Analysis and Defense'
| 'Computing for Data Analysis: Methods and Tools'
Expand Down
Loading