You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.
I am developing an application where an admin invites a user. The user opens the same registration page provided by this package. When he registers, I don't want the admin to accept/reject his request and don't want to send the verification email (since admin is requesting him to sign up). How can I avoid these three steps from the 5-step process provided by this application?
I greatly appreciate your help.
Thanks.
The text was updated successfully, but these errors were encountered:
Hum... If you don't need the inspection steps, why don't you use django-registration with BASIC auth on the registration page or so on? I don't really get your situation...
User registers himself - here I need 5 step registration.
Admin invites user to register - here I need 2 step registration. I don't want the admin to accept/reject again since the admin himself sent the invitation.
Therefore, for 1, I need a 5 step process. However, for 2, I need a 2 step process.
you prob. need to inherit the default backend to custamize the behaviour while default one is just for a simple 5 step registration.
i'm sure that you can get what you want with using your own backend but it is a
bit complicated (there is no document thvs you need to read the source code to get how to create a custom backend)
I've done something similar, basically create a new class that inherits from the default backend and override whatever methods your need to implement the functionality that you need.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am developing an application where an admin invites a user. The user opens the same registration page provided by this package. When he registers, I don't want the admin to accept/reject his request and don't want to send the verification email (since admin is requesting him to sign up). How can I avoid these three steps from the 5-step process provided by this application?
I greatly appreciate your help.
Thanks.
The text was updated successfully, but these errors were encountered: