Merge branch 'fix-163' into 'development'
🐛 — Fix #163 — Fix invitations sorting order See merge request fiat-tux/hat-softwares/lufi!37
This commit is contained in:
commit
2b790c9f90
|
@ -1,6 +1,7 @@
|
|||
Revision history for Lufi
|
||||
|
||||
?.??.? ????-??-??
|
||||
- Fix invitations sorting order (#163)
|
||||
|
||||
0.04.3 2019-09 29
|
||||
- Translate dates in invitations (#161)
|
||||
|
|
|
@ -302,7 +302,7 @@ sub from_user {
|
|||
my $user = shift;
|
||||
|
||||
my $r = $c->app->dbi->db
|
||||
->select('invitations', undef, { ldap_user => $user })
|
||||
->select('invitations', undef, { ldap_user => $user }, { -desc => 'created_at' })
|
||||
->hashes;
|
||||
|
||||
if ($r->size) {
|
||||
|
|
Loading…
Reference in New Issue