Send emails i18n'd using backend-stored user language

This commit is contained in:
Tusooa Zhu 2022-03-01 21:24:17 -05:00
commit 0149ea4538
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
11 changed files with 1760 additions and 273 deletions

View file

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddLanguageToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add_if_not_exists(:language, :string)
end
end
end