Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sobolevn/b690f387cf6f66037b5001811782bcb8 to your computer and use it in GitHub Desktop.
Save sobolevn/b690f387cf6f66037b5001811782bcb8 to your computer and use it in GitHub Desktop.
defmodule EctoSlugs.Blog.Article.TitleSlug do
use EctoAutoslugField.Slug, from: :title, to: :slug
def build_slug(sources, _changeset) do
sources
|> super()
|> String.replace("-", "+")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment