File: signals.py

package info (click to toggle)
django-dynamic-preferences 1.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 476 kB
  • sloc: python: 3,040; makefile: 3
file content (4 lines) | stat: -rw-r--r-- 148 bytes parent folder | download
1
2
3
4
from django.dispatch import Signal

# Arguments provided to listeners: "section", "name", "old_value" and "new_value"
preference_updated = Signal()