mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
15 lines
356 B
Python
15 lines
356 B
Python
from app.models import User
|
|
import os
|
|
import shutil
|
|
from app import db
|
|
from . import bp
|
|
|
|
|
|
@bp.cli.command('reset')
|
|
def reset():
|
|
''' Reset terms of use accept '''
|
|
for user in [x for x in User.query.all() if x.terms_of_use_accepted]:
|
|
print(f'Resetting user {user.username}')
|
|
user.terms_of_use_accepted = False
|
|
db.session.commit()
|