mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-05-08 00:33:20 +00:00
Add phrase macros for '<person> has joined/left the conference'
This commit is contained in:
parent
10d2e80819
commit
d62679df18
@ -9,6 +9,26 @@
|
|||||||
</input>
|
</input>
|
||||||
</macro>
|
</macro>
|
||||||
|
|
||||||
|
<macro name="has_called_conf">
|
||||||
|
<input pattern="^(\d+)$">
|
||||||
|
<match>
|
||||||
|
<action function="play-file" data="$1"/>
|
||||||
|
<action function="sleep" data="100"/>
|
||||||
|
<action function="play-file" data="conference/conf-has_joined.wav"/>
|
||||||
|
</match>
|
||||||
|
</input>
|
||||||
|
</macro>
|
||||||
|
|
||||||
|
<macro name="has_left_conf">
|
||||||
|
<input pattern="^(\d+)$">
|
||||||
|
<match>
|
||||||
|
<action function="play-file" data="$1"/>
|
||||||
|
<action function="sleep" data="100"/>
|
||||||
|
<action function="play-file" data="conference/conf-has_left.wav"/>
|
||||||
|
</match>
|
||||||
|
</input>
|
||||||
|
</macro>
|
||||||
|
|
||||||
<macro name="enter_dest_number">
|
<macro name="enter_dest_number">
|
||||||
<input pattern="^(.*)$">
|
<input pattern="^(.*)$">
|
||||||
<match>
|
<match>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user