47 lines
2.3 KiB
Python
47 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2014-2018 Taiga Agile LLC
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from django import dispatch
|
|
from django.apps import AppConfig
|
|
|
|
signal_assigned_to = dispatch.Signal(providing_args=["user", "obj"])
|
|
signal_assigned_users = dispatch.Signal(providing_args=["user", "obj",
|
|
"new_assigned_users"])
|
|
signal_watchers_added = dispatch.Signal(providing_args=["user", "obj",
|
|
"new_watchers"])
|
|
signal_members_added = dispatch.Signal(providing_args=["user", "project",
|
|
"new_members"])
|
|
signal_mentions = dispatch.Signal(providing_args=["user", "obj",
|
|
"mentions"])
|
|
signal_comment = dispatch.Signal(providing_args=["user", "obj",
|
|
"watchers"])
|
|
signal_comment_mentions = dispatch.Signal(providing_args=["user", "obj",
|
|
"mentions"])
|
|
|
|
|
|
class NotificationsAppConfig(AppConfig):
|
|
name = "taiga.projects.notifications"
|
|
verbose_name = "Notifications"
|
|
|
|
def ready(self):
|
|
from . import signals as handlers
|
|
signal_assigned_to.connect(handlers.on_assigned_to)
|
|
signal_assigned_users.connect(handlers.on_assigned_users)
|
|
signal_watchers_added.connect(handlers.on_watchers_added)
|
|
signal_members_added.connect(handlers.on_members_added)
|
|
signal_mentions.connect(handlers.on_mentions)
|
|
signal_comment.connect(handlers.on_comment)
|
|
signal_comment_mentions.connect(handlers.on_comment_mentions)
|