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.

signals.py 271B

1234567
  1. import django.dispatch
  2. product_viewed = django.dispatch.Signal(
  3. providing_args=["product", "user", "request", "response"])
  4. # This needs to be moved into the search app when it is refactored
  5. product_search = django.dispatch.Signal(providing_args=["query", '"user'])