Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #160 from TwilioDevEd/fix-alice-deprecation
Browse files Browse the repository at this point in the history
Fix(voice): replace Alice with Polly.Amy
  • Loading branch information
tomwanzek committed Jul 12, 2023
2 parents 8b10482 + 12abfe6 commit 48cb9af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/Http/Controllers/ConferenceController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function showJoin()
$response->say(
'You are about to join the Rapid Response conference.',
[
'voice' => 'alice',
'voice' => 'Polly.Amy',
'language' => 'en-GB'
]
);
Expand Down Expand Up @@ -63,7 +63,7 @@ public function showConnect(Request $request)
$response->say(
'You have joined the conference.',
[
'voice' => 'alice',
'voice' => 'Polly.Amy',
'language' => 'en-GB'
]
);
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Controllers/RecordingController.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function showRecord()
'Please record your message after the beep.' .
' Press star to end your recording.',
[
'voice' => 'alice',
'voice' => 'Polly.Amy',
'language' => 'en-GB'
]
);
Expand All @@ -75,7 +75,7 @@ public function showHangup()
$response->say(
'Your recording has been saved. Good bye.',
[
'voice' => 'alice',
'voice' => 'Polly.Amy',
'language' => 'en-GB'
]
);
Expand Down

0 comments on commit 48cb9af

Please sign in to comment.