mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
498 B
30 lines
498 B
class BikeBrandsController < AuthenticatedController
|
|
expose(:bike_brand) do
|
|
if params[:id]
|
|
BikeBrand.find(params[:id])
|
|
elsif params[:bike_brand]
|
|
BikeBrand.new(params[:bike_brand])
|
|
else
|
|
BikeBrand.new
|
|
end
|
|
end
|
|
|
|
expose(:bike_brands) { BikeBrand.order('id').paginate(:page => params[:page]) }
|
|
|
|
def index
|
|
end
|
|
|
|
def show
|
|
end
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
if bike_brand.save
|
|
redirect_to bike_brands_url
|
|
else
|
|
render :new
|
|
end
|
|
end
|
|
end
|
|
|