lk | add ability to search by bike log #

This commit is contained in:
Louis Knapp
2015-09-21 19:35:11 -05:00
parent 7fa84acfd1
commit bc3b5f8a1a
3 changed files with 15 additions and 0 deletions
+10
View File
@@ -25,6 +25,16 @@ class BikesController < ApplicationController
@bikes = Bike.find(bike_ids)
end
def search
bike = Bike.where(log_number: params[:log_number]).first
if bike
redirect_to edit_bike_path(bike)
else
flash[:notice] = 'No bike with that log number was found'
redirect_to action: 'home', controller: 'static_pages'
end
end
def create
@bike = Bike.new(bike_params)
if @bike.save