diff --git a/app/controllers/invite_codes_controller.rb b/app/controllers/invite_codes_controller.rb index 6a7fef3caa46f3a87fa97cab5b6d1b1538ad1aec..96836eea39dbe6e5010e769307daa86362d32c38 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 diff --git a/app/models/invite_code.rb b/app/models/invite_code.rb index 9c6df660fe10b04a4bad8fa773e85b5ce9809836..8a564842945671dd63845555a1ff5f9a38b0c8af 100644 --- a/app/models/invite_code.rb +++ b/app/models/invite_code.rb @@ -12,6 +12,8 @@ class InviteCode < CouchRest::Model::Base design do view :by_invite_code view :by_invite_count + view :by_created_at + view :by_updated_at end def initialize(attributes = {}, options = {}) diff --git a/app/views/invite_codes/_invite_code.html.haml b/app/views/invite_codes/_invite_code.html.haml index a3c420d26abc3b3acd81e89adcb7074e935e8240..a167432d0de763a8c0959388db7747aab1f59f25 100644 --- a/app/views/invite_codes/_invite_code.html.haml +++ b/app/views/invite_codes/_invite_code.html.haml @@ -1,4 +1,6 @@ %tr + %td + = simple_date(invite_code.updated_at) %td = simple_date(invite_code.created_at) %td diff --git a/app/views/invite_codes/index.html.haml b/app/views/invite_codes/index.html.haml index 40fccdf3190d89fecf3da8d61043d7a9d9776005..98c49c7846840acf8c8060d81c1cc40df61a06fa 100644 --- a/app/views/invite_codes/index.html.haml +++ b/app/views/invite_codes/index.html.haml @@ -11,10 +11,10 @@ %td= f.text_field :max_uses, style: 'width: 4em' %td= f.submit t("helpers.submit.invites.create"), style: 'margin-bottom: 10px', class: 'btn btn-default' -= table @invites, %w(created code uses actions) += table @invites, %w(updated created code uses actions) -# select the text of the invite code when you click on it: :javascript $("input.invite-code").focus(function(){ this.select(); - }); \ No newline at end of file + });