Added messaging functions

This commit is contained in:
2025-05-26 15:11:26 +02:00
parent a497da8274
commit 9b8836183a
32 changed files with 1744 additions and 31 deletions

View File

@@ -324,6 +324,11 @@ def init_routes(main_bp):
def starred():
return render_template('starred/starred.html')
@main_bp.route('/conversations')
@login_required
def conversations():
return redirect(url_for('conversations.conversations'))
@main_bp.route('/trash')
@login_required
def trash():