25 lines
951 B
XML
25 lines
951 B
XML
|
{{ template "/twilio/head.tpl.xml" . }}
|
||
|
{{ $session := (get .Global "twilio_session") }}
|
||
|
|
||
|
|
||
|
<Response>
|
||
|
{{ if $digit := (invoke "FormValue" .C "Digits") }}
|
||
|
{{ if eq $digit "1" }}
|
||
|
<Redirect method="POST">/twilio/voice/submenu/connect.xml?connect_to={{urlquery "+5122993080"}}</Redirect>
|
||
|
{{ end }}
|
||
|
{{ if get .Global "debugMenu" }}
|
||
|
{{ if eq $digit "9" }}
|
||
|
<Redirect method="POST">/twilio/voice/submenu/debug.xml</Redirect>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
{{ else }}
|
||
|
<Gather numDigits="1" timeout="10" >
|
||
|
<Say voice="alice" language="en-US">Press 1 to be connected.</Say>
|
||
|
{{ if get .Global "debugMenu" }}
|
||
|
<Say voice="alice" language="en-US">Press 9 for Debug menu.</Say>
|
||
|
{{ end }}
|
||
|
</Gather>
|
||
|
{{ end }}
|
||
|
<Say voice="alice" language="en-US">Sorry, I didn't get your response. Have a nice day!</Say>
|
||
|
</Response>
|