-
Notifications
You must be signed in to change notification settings - Fork 56
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
Remove email related settings and disable email verification #224
Remove email related settings and disable email verification #224
Conversation
oshc/oshc/settings.py
Outdated
LOGIN_REDIRECT_URL = "/" | ||
|
||
CRISPY_TEMPLATE_PACK = 'bootstrap3' | ||
|
||
# Allauth settings | ||
ACCOUNT_EMAIL_VERIFICATION = None # Disable email verification of new user |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
at least two spaces before inline comment
04f0e82
to
cde9350
Compare
cde9350
to
3c2c8a4
Compare
oshc/oshc/settings.py
Outdated
EMAIL_HOST_USER = 'email' | ||
EMAIL_HOST_PASSWORD = 'password' | ||
EMAIL_PORT = 587 | ||
EMAIL_USE_TLS = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you want to try please go ahead and merge to predev, we need to make sure necessary issues are open. refing #222 (review).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also have #202, we will keep this open and I feel fine with closing the mini ones, no probs.
oshc/oshc/settings.py
Outdated
EMAIL_HOST_PASSWORD = 'password' | ||
EMAIL_PORT = 587 | ||
EMAIL_USE_TLS = True | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
blank line contains whitespace
We do not need email verification for new users right now.
Let's try to make sure basic features work well before adding optional features.
With the PR, email verification is disabled.