blob: 600664a35a4255c8adc6d8e677f6a1c98b2f888b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class AdminController < ApplicationController
before_filter :login_required
def index
end
def switch_locale
I18n.locale = params[:id].to_sym
render :controller => 'nodes', :action => 'index'
end
end
|