-
Notifications
You must be signed in to change notification settings - Fork 2
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
Resetting database doen't allow people to login #168
Labels
bug
Suspected or confirmed bug (defect) in the code
priority-1
Highest priority issue. This is costing us money every minute that passes.
Comments
SimonLab
added
the
priority-1
Highest priority issue. This is costing us money every minute that passes.
label
Oct 7, 2022
@SimonLab thanks for opening this issue and diving straight into addressing it. 👌 |
SimonLab
added a commit
that referenced
this issue
Oct 8, 2022
- Add test for item controller managing lists - Fix #168
SimonLab
added a commit
that referenced
this issue
Oct 8, 2022
- Add test for item controller managing lists - Fix #168
This will be fixed with #165 |
SimonLab
added
the
awaiting-review
An issue or pull request that needs to be reviewed
label
Oct 8, 2022
This was referenced Oct 11, 2022
Merged
done with #182 |
SimonLab
removed
the
awaiting-review
An issue or pull request that needs to be reviewed
label
Nov 30, 2022
nelsonic
pushed a commit
that referenced
this issue
Sep 8, 2023
- Add test for item controller managing lists - Fix #168
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
Suspected or confirmed bug (defect) in the code
priority-1
Highest priority issue. This is costing us money every minute that passes.
The following plug will check if the name of the person is defined and redirect to the profile page if it doesn't:
mvp/lib/app_web/router.ex
Lines 49 to 61 in 7d05242
However the first time a person login, the
person = Person.get_person!(person_id)
will fail and throw an error as the person is not yet added to the database.upsert
to add the new person to the databaseThe text was updated successfully, but these errors were encountered: