mirror of
https://github.com/tanrax/django-channels-more-than-present
synced 2026-01-08 06:13:39 +01:00
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
6 lines
196 B
Python
6 lines
196 B
Python
from django import dispatch
|
|
|
|
# Signal sent when presence changes in a room
|
|
# Arguments: room (Room instance), added (bool), removed (bool), bulk_change (bool)
|
|
presence_changed = dispatch.Signal()
|