Last active
June 29, 2019 12:53
-
-
Save crbelaus/3ec3630f99815f86b2a8c2e11aa44b90 to your computer and use it in GitHub Desktop.
Shows an example of Trans 1.0 runtinme errors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Trans 1.0 did not perform safety checks when building queries. | |
| # Adding conditions on a non-existing field would result un runtime errors. | |
| iex> Article | |
| ...> |> Article.with_translation(:es, :fake, "this field does not exist") | |
| ...> |> Repo.all | |
| ** (ArgumentError) The field `fake` is not declared as translatable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment