Skip to content

Instantly share code, notes, and snippets.

@noelworden
Created July 17, 2020 23:44
Show Gist options
  • Select an option

  • Save noelworden/cb374105188bfdeed1af7f49b5304e5c to your computer and use it in GitHub Desktop.

Select an option

Save noelworden/cb374105188bfdeed1af7f49b5304e5c to your computer and use it in GitHub Desktop.
#blog_snippets
def validate(changeset) do
changeset
|> validate_required([:revenue, :expense, :net_gain])
|> mathematical_validation()
|> validate_format(:reference_id, ~r/(^\d+$|\p{L})/u,
message: "must be a number or contain a letter"
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment