forked from rapidpro/rapidpro
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #406 from communityconnectlabs/feat/vonage-machine…
…-detection Add answered_by field on channels connections for IVR
- Loading branch information
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
18 changes: 18 additions & 0 deletions
18
temba/channels/migrations/0141_channelconnection_answered_by.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.0.10 on 2024-05-16 16:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("channels", "0140_smpplog"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="channelconnection", | ||
name="answered_by", | ||
field=models.CharField(choices=[("H", "Human"), ("M", "Machine")], max_length=1, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters