User model override and authentication

25 vues
Accéder directement au premier message non lu

Rafael Noronha

non lue,
24 oct. 2022, 17:15:0624/10/2022
à Django users
Hello guys,
I'm not advanced in Django and would like to know how and if it's possible to do it.

I need to override Django's user model, and change the fields "username" to "sr_usuario" and "password" to "sr_password", but I would like to continue using all Django's default authentication scheme and permissions. I want not only to change the description in the database or a label, I want to change the name of the field in the model, for when for example I needed to make a query, I would use User.objects.filter(sr_usuario="user_name") and everything would work usually.

It's possible? I couldn't find anything in the documentation or on forums I've searched.

Thank you very much in advance!

Ayser shuhaib

non lue,
24 oct. 2022, 17:18:3924/10/2022
à django...@googlegroups.com
Oi Rafael

I’m sure this tutorial will help you:

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/101d09bb-b076-4e54-9cbc-776ff93c979fn%40googlegroups.com.

Muhammad Juwaini Abdul Rahman

non lue,
24 oct. 2022, 20:29:2124/10/2022
à django...@googlegroups.com
I never tried this, but maybe you can.

Inherit the User model, then add two new lines:

class DerivedUser(User):
    .....
    sr_usuario = username
    sr_password = password

--

Abhishek Kumar

non lue,
24 oct. 2022, 22:25:3224/10/2022
à django...@googlegroups.com
If I may ask: why do you want to do this? If you just want to change what's displayed on Django Admin for example, you can do that without messing up with the code.

Répondre à tous
Répondre à l'auteur
Transférer
0 nouveau message