diff options
author | Azul <azul@riseup.net> | 2017-10-17 14:05:59 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2017-10-17 14:05:59 +0200 |
commit | 47df0b296b282d0fe554c3b596b366c5403c9588 (patch) | |
tree | b30e6372edca16a2fb15696bbe6a497468aa8887 /app/controllers/invite_codes_controller.rb | |
parent | 9414e8ddf4ce7e951a6dc9130d99fa12c5696b94 (diff) |
feat: sort invite codes by last update
They used to be sorted by the code which was not helpful
fixes #8806
requires deploy of new design docs to the platform
Diffstat (limited to 'app/controllers/invite_codes_controller.rb')
-rw-r--r-- | app/controllers/invite_codes_controller.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/invite_codes_controller.rb b/app/controllers/invite_codes_controller.rb index 6a7fef3..96836ee 100644 --- a/app/controllers/invite_codes_controller.rb +++ b/app/controllers/invite_codes_controller.rb @@ -7,7 +7,9 @@ class InviteCodesController < ApplicationController def index @invite = InviteCode.new # for the creation form. - @invites = InviteCode.all.page(params[:page]).per(APP_CONFIG[:pagination_size]) + @invites = InviteCode.by_updated_at.descending. + page(params[:page]). + per(APP_CONFIG[:pagination_size]) respond_with @invites end |