mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-02-15 01:40:04 +00:00
Daddy PyLint
This commit is contained in:
parent
4627498b8d
commit
a49d6dc321
|
@ -28,7 +28,7 @@ def login():
|
|||
|
||||
username = request.form['username'].strip()
|
||||
password = request.form['password'].strip()
|
||||
remember = True if request.form.get('remember') else False
|
||||
remember = bool(request.form['remember'])
|
||||
|
||||
user = db_session.query(db.Users).filter_by(username=username).first()
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@ OnlyLegs - Database models and functions for SQLAlchemy
|
|||
"""
|
||||
from uuid import uuid4
|
||||
import os
|
||||
import platformdirs
|
||||
from datetime import datetime as dt
|
||||
import platformdirs
|
||||
|
||||
from sqlalchemy import create_engine, Column, Integer, String, DateTime, ForeignKey, PickleType
|
||||
from sqlalchemy.orm import declarative_base, relationship
|
||||
|
|
|
@ -83,20 +83,20 @@ def profile():
|
|||
Profile overview, shows all profiles on the onlylegs gallery
|
||||
"""
|
||||
user_id = request.args.get('id', default=None, type=int)
|
||||
|
||||
|
||||
# If there is no userID set, check if the user is logged in and display their profile
|
||||
if not user_id:
|
||||
if current_user.is_authenticated:
|
||||
user_id = current_user.id
|
||||
else:
|
||||
abort(404, 'You must be logged in to view your own profile!')
|
||||
|
||||
|
||||
# Get the user's data
|
||||
user = db_session.query(db.Users).filter(db.Users.id == user_id).first()
|
||||
|
||||
|
||||
if not user:
|
||||
abort(404, 'User not found :c')
|
||||
|
||||
|
||||
images = db_session.query(db.Posts).filter(db.Posts.author_id == user_id).all()
|
||||
|
||||
|
||||
return render_template('profile.html', user=user, images=images)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
OnlyLegs - Settings page
|
||||
"""
|
||||
from flask import Blueprint, render_template
|
||||
from flask_login import login_required, current_user
|
||||
from flask_login import login_required
|
||||
|
||||
blueprint = Blueprint('settings', __name__, url_prefix='/settings')
|
||||
|
||||
|
|
Loading…
Reference in a new issue