Skip to content

Commit

Permalink
handle orderers placed by null school
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahgreenthal committed Oct 28, 2023
1 parent 6433016 commit 4dc730e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data class ApiPacketExposure(
val sourceId: Long,
val bookingId: Long,
val bookingCreationId: String,
val ordererSchoolId: Long,
val ordererSchoolId: Long?,
val tentativePacketExposure: Boolean,
val confirmedPacketExposure: Boolean,
)
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data class PacketExposure(
val sourceId: Long,
val bookingId: Long,
val bookingCreationId: String,
val ordererSchoolId: Long,
val ordererSchoolId: Long? = null,
val tentativePacketExposure: Boolean,
val confirmedPacketExposure: Boolean,
)

0 comments on commit 4dc730e

Please sign in to comment.