From aeb69e4abf69993157f9970fa5503b7f9fd4aab5 Mon Sep 17 00:00:00 2001 From: jessib Date: Thu, 20 Dec 2012 15:13:26 -0800 Subject: Define ascending method in CouchRest::Model::Designs::View so we can call the order either way. --- help/app/models/ticket_selection.rb | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'help') diff --git a/help/app/models/ticket_selection.rb b/help/app/models/ticket_selection.rb index cb20f5b..bebe5fc 100644 --- a/help/app/models/ticket_selection.rb +++ b/help/app/models/ticket_selection.rb @@ -8,12 +8,7 @@ class TicketSelection end def tickets - #TODO: can this be more succinct? - if order - Ticket.send(finder_method).startkey(startkey).endkey(endkey).send(order) - else - Ticket.send(finder_method).startkey(startkey).endkey(endkey) - end + Ticket.send(finder_method).startkey(startkey).endkey(endkey).send(order) end protected @@ -47,7 +42,8 @@ class TicketSelection end def order - 'descending' if @options[:sort_order].end_with? 'desc' + # we have defined the ascending method to return the view itself: + (@options[:sort_order].end_with? 'desc') ? 'descending' : 'ascending' end -- cgit v1.2.3