Skip to content

Commit

Permalink
Update links
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Feb 3, 2020
1 parent d1910c4 commit a9ee0dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion guides/howtos/Data mapping and validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ First of all, not everyone has a first and last name. Although your client is de

Given the requirements above, how would we implement the Sign Up feature in the backend?

One approach would be to have two schemas, Account and Profile, with virtual fields such as `first_name` and `last_name`, and [use associations along side nested forms](http://blog.plataformatec.com.br/2015/08/working-with-ecto-associations-and-embeds/) to tie the schemas to your UI. One of such schemas would be:
One approach would be to have two schemas, Account and Profile, with virtual fields such as `first_name` and `last_name`, and [use associations along side nested forms](https://dashbit.co/blog/working-with-ecto-associations-and-embeds) to tie the schemas to your UI. One of such schemas would be:

```elixir
defmodule Profile do
Expand Down
4 changes: 2 additions & 2 deletions guides/howtos/Polymorphic associations with many to many.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ In this guide, we will talk about polymorphic associations and how `many_to_many

## Todo lists v65131

The web has seen its share of todo list applications. But that won't stop us from creating our own!
The internet has seen its share of todo list applications. But that won't stop us from creating our own!

In our case, there is one aspect of todo list applications we are interested in, which is the relationship where the todo list has many todo items. We have explored this exact scenario in detail in an article we posted on Plataformatec's blog about [nested associations and embeds](http://blog.plataformatec.com.br/2015/08/working-with-ecto-associations-and-embeds/). Let's recap the important points.
In our case, there is one aspect of todo list applications we are interested in, which is the relationship where the todo list has many todo items. This exact scenario is explored in detail in a post about [nested associations and embeds](https://dashbit.co/blog/working-with-ecto-associations-and-embeds) from Dashbit's blog. Let's recap the important points.

Our todo list app has two schemas, `Todo.List` and `Todo.Item`:

Expand Down

0 comments on commit a9ee0dd

Please sign in to comment.