Guest User

Untitled

a guest
Oct 18th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def sort_direction_filter
  2. case params[:order]
  3. when 'asc'
  4. 'asc'
  5. else
  6. 'desc'
  7. end
  8. end
  9.  
  10. Client.order_name_by(sort_direction_filter)
Add Comment
Please, Sign In to add comment