0

I'm using the Django framework to make a website. When I create a user in Django, how do I get that user to be created in Kerberos?

4

1 回答 1

0

使用 Django 信号

您要寻找的是post_save()信号,只需将用户模型作为发送者发送给它;)

有关用户注册的一些示例,请参见django-registration ,

于 2012-05-12T11:55:15.240 回答