1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-11-25 08:38:59 +00:00

static URLs are exempt from auth requirement

This commit is contained in:
Lynne Megido 2020-01-28 15:36:44 +10:00
parent e66c0fcbd7
commit b3ca199167
Signed by: lynnesbian
GPG key ID: F0A184B5213D9F90

View file

@ -32,7 +32,7 @@ scopes_pleroma = ['read', 'write', 'push']
@app.before_request @app.before_request
def login_check(): def login_check():
if request.path not in ['/', '/about', '/welcome', '/login', '/signup', '/do/login', '/do/signup', '/static/style.css'] and not request.path.startswith("/push"): if request.path not in ['/', '/about', '/welcome', '/login', '/signup', '/do/login', '/do/signup'] and not request.path.startswith("/push") and not request.path.startswith('/static'):
# page requires authentication # page requires authentication
if 'user_id' not in session: if 'user_id' not in session:
return redirect(url_for('render_home')) return redirect(url_for('render_home'))