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 Jun 12, 2024. It is now read-only.
- [x ] bug report -> please search issues before submitting
- [ ] feature request
- [ ] documentation issue or request
- [ ] regression (a behavior that used to work and stopped in a new release)
class CustomUserManager(BaseUserManager):
def create_user(self, email, password, **extra_fields):
email = self.normalize_email(email)
user = self.model(email =email, **extra_fields)
user.set_password(password)
user.save()
return user
No changes in index function in view.py
When debug=True in settings.py, everything works great. Admin page works as the project without the ms-identity-platform integrated. But when debug is set to False. The sign-in page(auth/status.html) throws 500 code.
Any log messages given by the failure
System check identified no issues. After click the login link, got the below error message:
"GET / HTTP /1.1" 500 651
Expected/desired behavior
Works the same in both debug settings.
OS and Version?
Windows 10
Versions
python3.7, django3.2.14, ms-identity-python0.16.6
Mention any other details that might be useful
When I just clone this repo and do "python manage.py runserver localhost:8080" in sign-in folder, then click into the sign-in link. After sigin-in, the https:localhost:8080/admin url shows "Not found". Does it mean admin page is disabled?
Thanks! We'll be in touch soon.
The text was updated successfully, but these errors were encountered:
This issue is for a: (mark with an
x
)Minimal steps to reproduce
class CustomUserManager(BaseUserManager):
def create_user(self, email, password, **extra_fields):
email = self.normalize_email(email)
user = self.model(email =email, **extra_fields)
user.set_password(password)
user.save()
return user
No changes in index function in view.py
When debug=True in settings.py, everything works great. Admin page works as the project without the ms-identity-platform integrated. But when debug is set to False. The sign-in page(auth/status.html) throws 500 code.
Any log messages given by the failure
Expected/desired behavior
OS and Version?
Versions
Mention any other details that might be useful
When I just clone this repo and do "python manage.py runserver localhost:8080" in sign-in folder, then click into the sign-in link. After sigin-in, the https:localhost:8080/admin url shows "Not found". Does it mean admin page is disabled?
The text was updated successfully, but these errors were encountered: