mirror of
https://github.com/haiwen/seahub.git
synced 2025-05-04 05:56:23 +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"])
|