Custom User Model in DRF | Django Rest Framework Tutorial For Beginners | Code Aura

Поділитися
Вставка
  • Опубліковано 7 лис 2024

КОМЕНТАРІ • 13

  • @shamshadansari2018
    @shamshadansari2018 2 роки тому

    I can not explain how much your videos are helpfull for me.......... learning a lot..........boss

    • @muhammadalidjamalov4281
      @muhammadalidjamalov4281 Рік тому

      Assalomu alaykum, Your video tutorials are very informative, please post more videos, and then your UA-cam channel will become very famous!

  • @faisalsalam33
    @faisalsalam33 3 роки тому +1

    It was beautifully explained. Thank you.

    • @codeaura5138
      @codeaura5138  3 роки тому +1

      You are welcome Faisal Salam.
      More videos are coming. Happy Coding!

    • @muhammadalidjamalov4281
      @muhammadalidjamalov4281 Рік тому

      Assalomu alaykum, Your video tutorials are very informative, please post more videos, and then your UA-cam channel will become very famous!

  • @nutzersht1179
    @nutzersht1179 Рік тому +2

    This channel is so underrated 🔥🫣

  • @no-handles
    @no-handles 2 роки тому

    Your video is very clear and concise which I appreciate very much. Would you be so kind to make a tutorial on how to make different user types which has different authorizations please?

    • @codeaura5138
      @codeaura5138  2 роки тому

      Thank you !
      You want different authorizations for different types of users? Or you meant different authentications(e.g. set A users login by email and set B users login by mobile-number).

    • @no-handles
      @no-handles 2 роки тому

      @@codeaura5138 different users, different authorization. Thanks for your reply!

    • @muhammadalidjamalov4281
      @muhammadalidjamalov4281 Рік тому

      Assalomu alaykum, Your video tutorials are very informative, please post more videos, and then your UA-cam channel will become very famous!

  • @muhammadalidjamalov4281
    @muhammadalidjamalov4281 Рік тому +1

    Assalomu alaykum, Your video tutorials are very informative, please post more videos, and then your UA-cam channel will become very famous!

  • @peswolf5678
    @peswolf5678 Рік тому

    i apply this code but i have an issue regarding password hashing. my password is saving in database as a plain text

    • @codeaura5138
      @codeaura5138  Рік тому +1

      You can add this piece in the Custom Manager class:
      user.set_password(password)
      user.save(using=self._db)

      return user