Add active_language controller and cookie storage

This commit is contained in:
maddiebaka
2023-10-27 15:24:48 -04:00
parent c2891a66f8
commit 3ba4a49a26
8 changed files with 89 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
FactoryBot.define do
factory :language do
name { "MyString" }
sequence(:name) { |n| "MyString#{n.to_s}" }
end
factory :language_english, class: :language do
name { "English" }
end
end