Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/phoenix_kit_document_creator/schemas/template.ex
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ defmodule PhoenixKitDocumentCreator.Schemas.Template do
# Core's rule, not a local copy. The pipeline this replaced deleted every
# non-ASCII character, so a Cyrillic or Greek name produced an EMPTY slug and
# German lost its umlauts. Slug.slugify/2 romanizes instead.
defp slugify(name), do: Slug.slugify(name)
defp slugify(name), do: Slug.slugify(name, transliterate: true)

@doc "Changeset for upserting from Google Drive sync data."
def sync_changeset(template, attrs) do
Expand Down