Skip to content
Snippets Groups Projects
Commit 86131586 authored by Otto Visser's avatar Otto Visser
Browse files

Merge branch 'sortForwardAlphabetically' into 'development'

Sorts the list of TAs alphabetically when forwarding.

See merge request EIP/queue!93
parents a2fdbb93 2f69c5fb
Branches
Tags
No related merge requests found
......@@ -260,6 +260,7 @@ public class RequestController {
// Do not forward to yourself
others = others.stream()
.filter(u -> !u.equals(user))
.sorted(Comparator.comparing(User::getDisplayName))
.collect(Collectors.toList());
model
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment