mirror of
https://github.com/home-assistant/core.git
synced 2025-05-08 16:09:22 +00:00

* Add support to incomming SMS via polling * Update dependencies * Only send notification for unread messages * Only inform if callback is not getting used * Update gateway.py * Apply PR feedback * Update homeassistant/components/sms/gateway.py Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Apply PR comments * Make black happy Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
6 lines
107 B
Python
6 lines
107 B
Python
"""Constants for sms Component."""
|
|
|
|
DOMAIN = "sms"
|
|
SMS_GATEWAY = "SMS_GATEWAY"
|
|
SMS_STATE_UNREAD = "UnRead"
|