Skip to content
Snippets Groups Projects

feat: sort invite codes by last update

Merged azul requested to merge feat/8806-sort-invite-codes into master
4 files
+ 9
3
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -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
Loading