mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-08 12:44:03 +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"])
|