Skip to content

Instantly share code, notes, and snippets.

@noelworden
Last active July 17, 2020 23:47
Show Gist options
  • Select an option

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

Select an option

Save noelworden/be2c502081e80e6cadc288afcdb3e6ee 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