Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Queue
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
Queue
Merge requests
!783
Resolve "Requests for deleted assignments break history page"
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Requests for deleted assignments break history page"
699-requests-for-deleted-assignments-break-history-page
into
development
Overview
13
Commits
3
Pipelines
0
Changes
6
Merged
Resolve "Requests for deleted assignments break history page"
Henry Page
requested to merge
699-requests-for-deleted-assignments-break-history-page
into
development
Jul 3, 2024
Overview
13
Commits
3
Pipelines
0
Changes
6
What does this mr do?
Read
#699 (closed)
Actions taken to fix bug
Does this MR meet the acceptance criteria?
Screenshots
Deleted Assignments
Deleted Modules
I have added a changelog entry to reflect the significant changes I made and the bug I fixed.
A test was created to test the bug.
I have updated the documentation accordingly.
I adhere to the style guide.
Closes
#699 (closed)
Edited
11 months ago
by
Henry Page
0
0
Merge request reports
Compare
development
version 1
93ee686a
Jul 4, 2024
development (base)
and
latest version
latest version
bc378ba0
3 commits,
11 months ago
version 1
93ee686a
1 commit,
Jul 4, 2024
6 files
+
110
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
src/main/java/nl/tudelft/queue/controller/LabController.java
+
1
−
0
View file @ bc378ba0
Edit in single-file editor
Open in Web IDE
Show full file
@@ -753,6 +753,7 @@ public class LabController {
@Transactional
public
void
setEnqueuePageAttributes
(
QueueSession
<?>
qSession
,
Model
model
,
Person
person
)
{
var
session
=
sCache
.
getRequired
(
qSession
.
getSession
(),
id
->
ls
.
deleteSessionById
(
id
));
ls
.
syncQueueSessionWithCore
(
qSession
);
List
<
RoomDetailsDTO
>
rooms
=
session
.
getRooms
().
stream
()
.
sorted
(
Comparator
.
comparing
(
r
->
r
.
getBuilding
().
getName
()
+
r
.
getName
())).
toList
();
Loading