-
Notifications
You must be signed in to change notification settings - Fork 83
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
teachers with no school cannot save created levels #1627
Comments
Ah yes! That's it. Thanks @evemartin |
Hey team! Please add your planning poker estimate with Zenhub @evemartin @faucomte97 @SKairinos |
Hey, I'm interested in this issue. I have experience with save game systems and python - I will happily be assigned :) |
Hello, while running the website through a dev container on my local machine, I attempted to make a teacher account that wasn't connected to a school. Unfortunately, I could not sign in to my account since it needed an email verification - and that email never arrived. Do I have to manually add a teacher record with '0' as the school ID? Thanks |
Hello. There are 2 options:
|
If a teacher is not part of a school and attempts to save a created level, they get the following error and the level is not saved:
As evidenced by the GCP logs, this might be due to an inaccurate check in
level_editor.py
'ssave_level_for_editor
which is meant to check whether the user is in a school or not but actually just checks whether the user is an independent or not:To fix the bug, this
if
check will probably have to be changed.Steps to reproduce the bug:
The text was updated successfully, but these errors were encountered: