Skip to content

Commit 6981620

Browse files
Sort mailboxes on user Permissions page - closes #5087
1 parent 4f1b018 commit 6981620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Controllers/UsersController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ public function permissions($id)
304304
abort(404);
305305
}
306306

307-
$mailboxes = Mailbox::all();
307+
$mailboxes = Mailbox::all()->sortBy('name');
308308

309309
$users = $this->getUsersForSidebar($id);
310310

0 commit comments

Comments
 (0)