mfogel / django-simple-email-confirmation

Simple email confirmation for django.
170 stars 68 forks source link

User mixin example is not clear #29

Open motatoes opened 8 years ago

motatoes commented 8 years ago

Adding the mixin to the User model is not clear to me as a django newbie:

I think this part could be made more clear in the docs.

mdamien commented 8 years ago

If you're defining a custom auth model like in the third step, yes, you should add it to AUTH_USER_MODEL. But if you don't already have a custom User model, you can also skip this step as said in the doc.

You're gonna need to migrate after adding simple_email_confirmation since this app has it's own models.