Removed default login (fix #54)
This commit is contained in:
parent
bf7af89c78
commit
42720679ae
1 changed files with 0 additions and 11 deletions
|
@ -74,17 +74,6 @@ db.init_app(app)
|
|||
# Initializes CORS so that the api_tool can talk to the example app
|
||||
cors.init_app(app)
|
||||
|
||||
# Add users for the example
|
||||
with app.app_context():
|
||||
db.create_all()
|
||||
if db.session.query(User).filter_by(username='Yasoob').count() < 1:
|
||||
db.session.add(User(
|
||||
username='Yasoob',
|
||||
password=guard.hash_password('strongpassword'),
|
||||
roles='admin'
|
||||
))
|
||||
db.session.commit()
|
||||
|
||||
|
||||
@app.route('/api/login', methods=['POST'])
|
||||
def login():
|
||||
|
|
Loading…
Reference in a new issue