Skip to content

Commit 9d37091

Browse files
starting to display courses that are in the past or future as well
1 parent 99670b8 commit 9d37091

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/server/updater/courses.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ const createCurCusFromUpdater = async (
108108
const coursesHandler = async (courseRealizations: any[]) => {
109109
const filteredCourseRealizations = courseRealizations.filter(
110110
(course) =>
111-
course.courseUnits.length &&
112-
course.flowState !== 'CANCELLED' &&
113-
course.flowState !== 'ARCHIVED'
111+
course.courseUnits.length
112+
// course.flowState !== 'CANCELLED' &&
113+
// course.flowState !== 'ARCHIVED'
114114
)
115115

116116
await createCursFromUpdater(filteredCourseRealizations)

0 commit comments

Comments
 (0)