mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04:00
31 lines
498 B
Ruby
31 lines
498 B
Ruby
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
|