mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-12-27 03:44:19 +00:00
Compare commits
No commits in common. "8c0843d2d08b39220688048ca2d890d0ad47027d" and "518a245133a8c8c1d46555f8b0fdecb8b6da0855" have entirely different histories.
8c0843d2d0
...
518a245133
@ -99,7 +99,7 @@ def create_app(config: Config = Config) -> Flask:
|
|||||||
|
|
||||||
from .users import bp as users_blueprint
|
from .users import bp as users_blueprint
|
||||||
default_breadcrumb_root(users_blueprint, '.users')
|
default_breadcrumb_root(users_blueprint, '.users')
|
||||||
app.register_blueprint(users_blueprint, cli_group='user', url_prefix='/users')
|
app.register_blueprint(users_blueprint, url_prefix='/users')
|
||||||
|
|
||||||
from .workshops import bp as workshops_blueprint
|
from .workshops import bp as workshops_blueprint
|
||||||
app.register_blueprint(workshops_blueprint, url_prefix='/workshops')
|
app.register_blueprint(workshops_blueprint, url_prefix='/workshops')
|
||||||
|
@ -15,4 +15,4 @@ def before_request():
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
from . import cli, events, json_routes, routes, settings
|
from . import events, json_routes, routes, settings
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
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()
|
|
Loading…
Reference in New Issue
Block a user