Message center settings and channel configuration. Telegram and callmebot added

This commit is contained in:
Eduardo Silva 2024-04-16 14:35:53 -03:00
parent eeeead26cc
commit dfb4285ab3
8 changed files with 411 additions and 5 deletions

View file

@ -19,7 +19,7 @@ class MessageChannel(models.Model):
enabled = models.BooleanField(default=True)
channel_type = models.CharField(
max_length=100, choices=(
('callmebot', 'CallMeBot'), ('ntfy', 'ntfy'), ('telegram', 'telegram'),
('callmebot', 'CallMeBot (WhatsApp)'), ('telegram', 'Telegram'),
)
)
destination = models.CharField(max_length=100, blank=True, null=True)