mirror of
https://github.com/haiwen/seahub.git
synced 2025-05-09 00:18:51 +00:00
5 lines
220 B
Python
5 lines
220 B
Python
|
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"])
|