2020-07-12 17:34:25 +02:00
|
|
|
# ContentDB
|
2018-05-17 16:18:20 +02:00
|
|
|
# Copyright (C) 2018 rubenwardy
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2019-12-17 21:49:59 +01:00
|
|
|
from flask import Blueprint, render_template, redirect, url_for
|
2020-12-04 23:05:10 +01:00
|
|
|
from flask_login import current_user, login_required
|
2020-07-12 17:33:17 +02:00
|
|
|
from app.models import db, Notification
|
2018-05-13 18:55:28 +02:00
|
|
|
|
2019-11-16 00:51:42 +01:00
|
|
|
bp = Blueprint("notifications", __name__)
|
|
|
|
|
|
|
|
@bp.route("/notifications/")
|
2018-05-13 18:55:28 +02:00
|
|
|
@login_required
|
2019-11-16 00:51:42 +01:00
|
|
|
def list_all():
|
2018-05-29 18:20:11 +02:00
|
|
|
return render_template("notifications/list.html")
|
|
|
|
|
2019-11-16 00:51:42 +01:00
|
|
|
@bp.route("/notifications/clear/", methods=["POST"])
|
2018-05-29 18:20:11 +02:00
|
|
|
@login_required
|
2019-11-16 00:51:42 +01:00
|
|
|
def clear():
|
2020-07-12 17:33:17 +02:00
|
|
|
Notification.query.filter_by(user=current_user).delete()
|
2018-05-29 18:20:11 +02:00
|
|
|
db.session.commit()
|
2019-11-16 00:51:42 +01:00
|
|
|
return redirect(url_for("notifications.list_all"))
|