Update customers_controller.rb

This commit is contained in:
2016-04-27 09:10:31 -04:00
parent 5242ed5a94
commit 5047077b07

View File

@@ -21,6 +21,14 @@ class CustomersController < ApplicationController
@customers = QboCustomer.paginate(:page => params[:page])
end
def new
end
def create
end
# display a specific customer
def show
@customer = QboCustomer.find_by_id(params[:id])
@@ -46,6 +54,10 @@ class CustomersController < ApplicationController
else
render :edit
end
end
end
def destroy
end
end