1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-16 15:19:06 +00:00

add user events

This commit is contained in:
lins05
2012-09-24 20:30:17 +08:00
parent 80a84e097a
commit 02870ee552
11 changed files with 212 additions and 2 deletions

4
signals.py Normal file
View File

@@ -0,0 +1,4 @@
import django.dispatch
repo_created = django.dispatch.Signal(providing_args=["creator", "repo_id", "repo_name"])
repo_deleted = django.dispatch.Signal(providing_args=["usernames", "repo_owner", "repo_id", "repo_name"])