File: signals.py

package info (click to toggle)
python-django-rosetta 0.7.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 572 kB
  • ctags: 245
  • sloc: python: 1,992; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
from django import dispatch
entry_changed = dispatch.Signal(
    providing_args=["user", "old_msgstr", "old_fuzzy", "pofile", "language_code",]
)

post_save = dispatch.Signal(
    providing_args=["language_code","request",]
)