Skip to content

Commit

Permalink
feat: Group id for cu on create
Browse files Browse the repository at this point in the history
  • Loading branch information
Veikkosuhonen committed Nov 22, 2023
1 parent ba44b51 commit 7a0733d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ const createCourseUnits = async (courseUnits) => {
ids.add(cu.id)
return true
})
.map(({ id, name, code, validityPeriod }) => ({
.map(({ id, groupId, name, code, validityPeriod }) => ({
id,
groupId,
name,
courseCode: code,
validityPeriod,
Expand Down

0 comments on commit 7a0733d

Please sign in to comment.