12 lines
345 B
Ruby
12 lines
345 B
Ruby
class ActiveLanguageController < ApplicationController
|
|
|
|
def set_active_language
|
|
if Language.find_by_id(params[:active_language_id]) != nil
|
|
cookies[:active_language_id] = params[:active_language_id]
|
|
redirect_back fallback_location: root_path
|
|
else
|
|
redirect_to root_path, status: :unprocessable_entity
|
|
end
|
|
end
|
|
end
|