Skip to content

Commit

Permalink
feat: user queue shuffling disable
Browse files Browse the repository at this point in the history
  • Loading branch information
jbj338033 committed Aug 1, 2024
1 parent 0e99b53 commit 0f2cc02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class UserEntity(
var status: UserStatus = UserStatus.ACTIVE,

@OneToMany(mappedBy = "user", fetch = FetchType.LAZY, cascade = [CascadeType.ALL], orphanRemoval = true)
val queue: MutableSet<UserQueueEntity> = mutableSetOf(),
val queue: MutableList<UserQueueEntity> = mutableListOf(),

@OneToMany(mappedBy = "user", fetch = FetchType.LAZY, cascade = [CascadeType.ALL], orphanRemoval = true)
val recents: MutableList<UserRecentEntity> = mutableListOf(),
Expand Down

0 comments on commit 0f2cc02

Please sign in to comment.