aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/referentials_controller.rb
blob: 539c7ca5d4d7ac363780131437d031cb9f995930 (plain)
1
2
3
4
5
6
7
8
9
class ReferentialsController < InheritedResources::Base

  before_filter :switch_referential

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

end