aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/chouette_controller.rb
blob: 1b9f30a8548f2fdf57df5c5762c28266d22f5534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class ChouetteController < InheritedResources::Base
  
  before_filter :switch_referential

  def switch_referential
    Apartment::Database.switch(referential.slug)
  end 

  def referential
    @referential ||= Referential.find params[:referential_id]  
  end 

end