| 1054 | |
| 1055 | |
| 1056 | class ChannelProfileMembership(models.Model): |
| 1057 | channel_profile = models.ForeignKey(ChannelProfile, on_delete=models.CASCADE) |
| 1058 | channel = models.ForeignKey(Channel, on_delete=models.CASCADE) |
| 1059 | enabled = models.BooleanField( |
| 1060 | default=True |
| 1061 | ) # Track if the channel is enabled for this group |
| 1062 | |
| 1063 | class Meta: |
| 1064 | unique_together = ("channel_profile", "channel") |
| 1065 | |
| 1066 | |
| 1067 | class ChannelStream(models.Model): |
no outgoing calls
no test coverage detected