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
If an admin account is enabled, the first login is successful, however, if you logout and try to login.
You get an SQLalchemy error as the admin user must have first_name and last_name: in app/account/account.py
Adding: user = User(email="[email protected]",first_name="admin", last_name="admin"
Fixed the error.
The text was updated successfully, but these errors were encountered:
If an admin account is enabled, the first login is successful, however, if you logout and try to login.
You get an SQLalchemy error as the admin user must have first_name and last_name: in
app/account/account.py
Adding:
user = User(email="[email protected]",first_name="admin", last_name="admin"
Fixed the error.
The text was updated successfully, but these errors were encountered: