Skip to content

Commit

Permalink
changed email to agnostic entry
Browse files Browse the repository at this point in the history
  • Loading branch information
quoncc committed Sep 1, 2023
1 parent e4b63e8 commit 56076ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meshdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
with app.app_context():
db.create_all()
db.metadata.create_all
if not app.security.datastore.find_user(email="[email protected]"):
app.security.datastore.create_user(email="[email protected]", password=hash_password("abcd1234"))
if not app.security.datastore.find_user(email="[email protected]"):
app.security.datastore.create_user(email="[email protected]", password=hash_password("abcd1234"))
db.session.commit()


Expand Down

0 comments on commit 56076ec

Please sign in to comment.