Browse Source
From its inception, phone notices via Talking Tech have not behaved like other notices. Instead of reading notices generated by Koha, the Talking Tech scripts largely generate their own notices. We would like to pave the way to having "generic" phone notices that can be processed by plugins to support arbitrary telephony vendors ( we will be targeting Twilio initially ). To that end, it seems sensible to begin by changing the messaage transport type for Talking Tech from 'phone' to 'itiva' to highlight its specificity and difference from standard message transports. Test Plan: 1) Apply this patch 2) Run updatedatabase.pl 3) Restart all the things! 4) Test Talking Tech outbound script 5) Note no changes in functionality Signed-off-by: Christopher Zorn <Christofer.Zorn@ajaxlibrary.ca> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> JD amended patch: remove uneeded indentation change in sample_notices_message_transports.sql Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>20.11.x
7 changed files with 31 additions and 22 deletions
@ -0,0 +1,9 @@ |
|||
$DBversion = 'XXX'; # will be replaced by the RM |
|||
if( CheckVersion( $DBversion ) ) { |
|||
$dbh->do(q{ |
|||
UPDATE message_transport_types SET message_transport_type = "itiva" WHERE message_transport_type = "phone" |
|||
}); |
|||
|
|||
# Always end with this (adjust the bug info) |
|||
NewVersion( $DBversion, 25333, q{Change message transport type for Talking Tech from "phone" to "itiva"}); |
|||
} |
Loading…
Reference in new issue