mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
301 B
18 lines
301 B
"""
|
|
`m2m_changed`
|
|
|
|
```
|
|
def m2m_signal_handler(action, instance, reverse, model, pk_set, using):
|
|
pass
|
|
```
|
|
"""
|
|
PRE_ADD = 'pre_add'
|
|
POST_ADD = 'post_add'
|
|
PRE_REMOVE = 'pre_remove'
|
|
POST_REMOVE = 'post_remove'
|
|
PRE_CLEAR = 'pre_clear'
|
|
POST_CLEAR = 'post_clear'
|
|
|
|
POST_PREFIX = 'post'
|
|
PRE_PREFIX = 'pre'
|