Skip to content

Commit 1ca1589

Browse files
committed
chore: prepare for 2024/2025 semester
1 parent a08e524 commit 1ca1589

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bin/commands/dev-init.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ module.exports = async (allUser, genPass, hallgatok, beosztas, basePath, initAdm
4747
}
4848
// Initialize Semester
4949
const semesterData = [{ data: {
50-
academicyear: '2023/2024',
50+
academicyear: '2024/2025',
5151
academicterm: 1,
5252
CourseId: 1
5353
} }];
5454
await seedDBwithObjects(db, 'Semesters', semesterData);
5555
const qResult = await db.Semesters.findOne({
5656
attributes: ['id'],
5757
where: {
58-
academicyear: '2023/2024',
58+
academicyear: '2024/2025',
5959
academicterm: 1,
6060
CourseId: 1
6161
}

courses/VM010/xls-parsers/StudentRegParser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ module.exports = async (semesterId, options) => {
6262
sreg.data.SemesterId = semesterId;
6363

6464
// random exercise type distribution
65-
const engStudent = sreg.data.neptunCourseCode.includes('a');
65+
const engStudent = sreg.data.neptunCourseCode.includes('cs16a');
6666

6767
const qCourse = await db.Semesters.findOne({ where: { id: semesterId } });
6868
if (engStudent) {

0 commit comments

Comments
 (0)