mirror of
https://github.com/etesync/server
synced 2024-11-22 16:58:08 +00:00
c6b1b855df
From the source: > The providing_args argument is deprecated. As it is purely > documentational, it has no replacement. If you rely on this > argument as documentation, you can move the text to a code > comment or docstring.
5 lines
104 B
Python
5 lines
104 B
Python
from django.dispatch import Signal
|
|
|
|
# Provides arguments "request" and "user"
|
|
user_signed_up = Signal()
|