Compare commits

...

2 Commits

Author SHA1 Message Date
Yapollon
09a2a6ac5f Merge remote-tracking branch 'origin/master' 2024-03-07 20:43:15 +01:00
Yapollon
8947c6d54c MIGRATE: Implemented user color setting. 2024-03-07 20:43:04 +01:00

9
app.py
View File

@ -396,7 +396,6 @@ def edit_habit():
@login_required
def edit_habit_change():
units = ["Tag", "Woche", "Monat", "Jahr"]
name = request.form.get('name')
note = request.form.get('note')
@ -530,6 +529,8 @@ def save_profile_image(image_file):
# Get the filename from the image path saved in the user
filename = os.path.basename(current_user.profile_image)
image_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
os.remove(image_path)
# Check if the image is an animated gif
if file_extension == 'gif':
@ -566,8 +567,7 @@ def save_profile_image(image_file):
def save_profile_animated(image_file, filename):
# Save the GIF temporarily
filename = filename.replace(".jpg", ".gif")
gif_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
gif_path = os.path.join(app.config['UPLOAD_FOLDER'], filename.replace(".jpg", ".gif"))
image_file.save(gif_path)
current_user.profile_image = gif_path
@ -718,6 +718,7 @@ def users():
errors={},
)
@app.route('/users-edit')
@login_required
def edit_users():
@ -857,6 +858,7 @@ def user_leave():
habit_list.remove_user(current_user.id)
return redirect(url_for("index"))
@app.route('/accept-list', methods=['POST'])
@login_required
def accept_list():
@ -877,6 +879,7 @@ def accept_list():
current_user.accept_List(habit_list.id)
return {}
@app.route('/deny-list', methods=['POST'])
@login_required
def deny_list():