1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-04-04 10:03:22 -04:00

lk | reverses order of clients in all clients section

This commit is contained in:
Louis Knapp 2015-10-13 18:43:14 -05:00
parent ee7b521c82
commit c7ae9ce7c2

View File

@ -4,7 +4,7 @@ class ClientsController < ApplicationController
def index
@waiting_list = Client.waiting_list
@clients = Client.all
@clients = Client.all.reverse_order
end
def new