mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-22 02:54:52 +00:00
Deleting accounts
Resetting password Profile settings Fixing random shit
This commit is contained in:
parent
300c80fcd5
commit
e08b31a430
13 changed files with 317 additions and 89 deletions
|
@ -6,7 +6,7 @@ from werkzeug.exceptions import HTTPException
|
|||
|
||||
from .extensions import db, migrate, cache, assets, login_manager
|
||||
from .models import Users
|
||||
from . import views, auth, api, filters
|
||||
from . import views, account, auth, api, filters
|
||||
|
||||
|
||||
app = Flask(__name__)
|
||||
|
@ -36,6 +36,7 @@ assets.register("styles", styles)
|
|||
|
||||
cache.init_app(app)
|
||||
app.register_blueprint(views.blueprint)
|
||||
app.register_blueprint(account.blueprint)
|
||||
app.register_blueprint(auth.blueprint)
|
||||
app.register_blueprint(api.blueprint)
|
||||
app.register_blueprint(filters.blueprint)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue