mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
10 lines
259 B
Python
10 lines
259 B
Python
from app.models import User
|
|
|
|
|
|
def delete_user_(app, user_id):
|
|
with app.app_context():
|
|
user = User.query.filter_by(id=user_id).first()
|
|
if user is None:
|
|
raise Exception('User {} not found!'.format(user_id))
|
|
user.delete()
|