Class: FamilyGallery::LocalesController
Instance Method Summary
collapse
#current_ability, #current_user
Instance Method Details
#create ⇒ Object
5
6
7
8
9
10
11
12
13
|
# File 'app/controllers/family_gallery/locales_controller.rb', line 5
def create
I18n.locale = params[:locale]
session[:locale] = I18n.locale
respond_to do |format|
format.html { redirect_to root_url }
format.json { render json: {success: true} }
end
end
|
#new ⇒ Object
2
3
|
# File 'app/controllers/family_gallery/locales_controller.rb', line 2
def new
end
|