mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-01 12:26:13 +00:00
Fix login manager login view
This commit is contained in:
parent
2ca022589a
commit
ada415a369
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,5 +1,5 @@
|
||||||
gallery/static/.webassets-cache
|
onlylegs/static/.webassets-cache
|
||||||
gallery/static/gen
|
onlylegs/static/gen
|
||||||
|
|
||||||
instance/
|
instance/
|
||||||
migrations/
|
migrations/
|
||||||
|
|
|
@ -18,9 +18,9 @@ from werkzeug.security import generate_password_hash
|
||||||
|
|
||||||
from onlylegs.extensions import db, migrate, login_manager, assets, compress, cache
|
from onlylegs.extensions import db, migrate, login_manager, assets, compress, cache
|
||||||
from onlylegs.views import index, image, group, settings, profile
|
from onlylegs.views import index, image, group, settings, profile
|
||||||
from onlylegs.models import User
|
|
||||||
from onlylegs import api
|
from onlylegs import api
|
||||||
from onlylegs import auth
|
from onlylegs import auth
|
||||||
|
from onlylegs.models import User
|
||||||
|
|
||||||
|
|
||||||
INSTACE_DIR = os.path.join(platformdirs.user_config_dir("onlylegs"), "instance")
|
INSTACE_DIR = os.path.join(platformdirs.user_config_dir("onlylegs"), "instance")
|
||||||
|
@ -78,7 +78,7 @@ def create_app(): # pylint: disable=R0914
|
||||||
# can also set session_protection to "strong"
|
# can also set session_protection to "strong"
|
||||||
# this would protect against session hijacking
|
# this would protect against session hijacking
|
||||||
login_manager.init_app(app)
|
login_manager.init_app(app)
|
||||||
login_manager.login_view = "gallery.index"
|
login_manager.login_view = "onlylegs.index"
|
||||||
|
|
||||||
@login_manager.user_loader
|
@login_manager.user_loader
|
||||||
def load_user(user_id):
|
def load_user(user_id):
|
||||||
|
|
Loading…
Reference in a new issue