修改管理员身份验证后端

发布于 2024-09-08 03:42:50 字数 180 浏览 4 评论 0原文

默认情况下,在 /admin 上进行身份验证后,函数 authenticate() 返回 User 对象,
如果我想获取用户的代理模型(ig 称为 HandyUser)怎么办作为回报?在我的项目中,在所有自定义身份验证后端中,我使用 HandyUser 而不是 User。
谢谢

By default, after authentication on /admin, function authenticate() returns User object,
what if i want to get proxy model for the User (i.g. called HandyUser) in return ? In my project, in all custom auth backends, i'm using HandyUser instead of User.
thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆里有你的影子 2024-09-15 03:42:50

根据 django 文档 http://docs .djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-user,您需要添加到您的设置文件中:

AUTH_PROFILE_MODULE = 'app.HandyUser'

然后当您引用您的 User 类时,调用 user.get_profile 方法将返回 HandyUser 的实例。

According to the django docs http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-user, you need to add to your settings file:

AUTH_PROFILE_MODULE = 'app.HandyUser'

And then when you reference your User class, call the user.get_profile method which will return the instance of HandyUser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文