-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for 1.6, refactor convert view to behave more like auth login view, make post-conversion login optional #40
base: master
Are you sure you want to change the base?
Conversation
?next=foo parameter, or get redirect from settings (similar to django's LOGIN_REDIRECT_URL)
Hi there - thanks for this! I haven't had time to check this out yet, but I notice it's causing the Travis build to fail. I think it worked before - if we can get this sorted out, I'll do a full review and merge. Thanks again! |
I looked at the travis detail report and (having never used Travis before) Also, I think the manage.py version may be backwards incompatible...so we Thanks for your work on lazysignup! Andy Schriner On Wed, Jul 23, 2014 at 4:33 AM, Dan Fairs [email protected] wrote:
|
Right, that all makes sense. I guess we may need to do something clever with |
Yeah, I don't like the version check idea so much either, but it's probably necessary to run the tests on multiple versions of django. On the bright side, it's really only affecting the running of tests, not the core app code, since that's the only thing the bundled manage.py is used for (right?). I took another look at the travis output, and on second thought, it doesn't look like a django version issue is causing the current problem (though I expect the version issue will become the next problem). The builds are all failing with
Any ideas? |
Weird. I've seen plenty of |
Yeah, the tests all pass locally for me (running django 1.6, python Andy Schriner On Wed, Jul 23, 2014 at 1:29 PM, Dan Fairs [email protected] wrote:
|
There are 3 changes in this PR:
Overall, I undertook this set of changes to allow me to use lazysignup with django-registration's 2-step registration process (with email verification). I think this solves issue #4 in a very minimal way. (I plan to redirect users to the "Registration complete; now go check your email" view, and use the "converted" signal to send the email and create the RegistrationProfile instance - the activation code - required by django-registration). I think a similar approach can be used for other verification workflows.