From 044c31e74755ec1a53ced0792813ca45c312751e Mon Sep 17 00:00:00 2001 From: Renne Rocha Date: Tue, 25 Apr 2023 18:13:22 -0300 Subject: [PATCH] Add video content --- content/posts/extending-django-user-profile-model.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/posts/extending-django-user-profile-model.md b/content/posts/extending-django-user-profile-model.md index e410f44..2a4d92f 100644 --- a/content/posts/extending-django-user-profile-model.md +++ b/content/posts/extending-django-user-profile-model.md @@ -12,6 +12,11 @@ and permissions, methods for handling passwords securely are part of this system Generally, this is adequate for most projects; however, there are situations where it becomes necessary to modify the behavior of a **User** or alter how their data is stored in the database. It should be noted that modifying the authorization and/or authentication process of a **User** will not be covered in this post. +For the people that prefers video content you can also watch me explaining +the content of this post in the following video (**but in Portuguese**): + +{{< peertube "https://peertube.lhc.net.br/videos/embed/20a424c4-2dcc-422a-be77-5f8a1fced27c" >}} + # Extending with an extra Model The simplest way to extend your **User** is to create a new model with a