negos_app/app/controllers/public/reseauxes_controller.rb
Nicolas Bally ba8c4201cc suite
2017-10-23 01:32:48 +02:00

28 lines
495 B
Ruby
Executable File

class Public::ReseauxesController < ApplicationController
layout "public"
before_filter :auth_customer
def index
@reseauxes = current_customer.own_reseauxes.order(:name)
if @reseauxes.count == 1
redirect_to public_reseaux_path(@reseauxes.first)
end
end
def show
@reseaux = current_customer.own_reseauxes.find(params[:id])
#@reseaux = Reseaux.find(params[:id])
end
def products
#@reseaux = Reseaux.find(params[:id])
end
end