mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-03 16:10:26 +00:00
7 lines
383 B
Python
7 lines
383 B
Python
# Copyright (c) 2012-2018 Seafile Ltd.
|
|
import django.dispatch
|
|
|
|
comment_review_successful = django.dispatch.Signal(providing_args=["review", "comment", "author"])
|
|
request_reviewer_successful = django.dispatch.Signal(providing_args=["from_user", "to_user", "review_id"])
|
|
update_review_successful = django.dispatch.Signal(providing_args=["from_user", "to_user", "review_id", "status"])
|