Add language settings for users, and translate titles to French
Some checks failed
CI / scan_ruby (push) Successful in 15s
CI / scan_js (push) Successful in 12s
CI / lint (push) Successful in 12s
CI / test (push) Failing after 36s

This commit is contained in:
sto
2025-03-27 12:54:03 +01:00
parent 497768610d
commit 8d754ec7aa
14 changed files with 128 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class AddLangToUser < ActiveRecord::Migration[8.0]
def change
add_column :users, :lang, :string, default: 'en'
end
end