mirror of
https://github.com/haiwen/seahub.git
synced 2025-05-05 06:26:25 +00:00
6 lines
282 B
Python
6 lines
282 B
Python
import django.dispatch
|
|
|
|
# Use org_id = -1 if it's not an org repo
|
|
repo_created = django.dispatch.Signal(providing_args=["org_id", "creator", "repo_id", "repo_name"])
|
|
repo_deleted = django.dispatch.Signal(providing_args=["org_id", "usernames", "repo_owner", "repo_id", "repo_name"])
|