Skip to content

Commit

Permalink
Update shared secret
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols committed Oct 24, 2022
1 parent d0caee9 commit 254df80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/src/Controller/BackOfficeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class BackOfficeController extends DataController
*
* @var string
*/
const DEFAULT_SHARED_SECRET = '8cd8ef52e8e101574e400365b55e11a6';
const DEFAULT_SHARED_SECRET = '0b21fcaf34673a8c3ec8ed877d76ae34';

/**
* @Route("/createMeeting", name="backOfficeMeetingCreate")
Expand Down Expand Up @@ -147,7 +147,7 @@ public function backOfficeRecordingCreate(string $serverID, Request $request): X
$parentMeetingID = $request->query->get('parentMeetingID');

$parentMeeting = $this->findRoomConfiguration($serverID, $parentMeetingID);
foreach($parentMeeting->getChildMeetings() as $childMeeting) {
foreach ($parentMeeting->getChildMeetings() as $childMeeting) {
if (!(--$sequence)) {
$meeting = $childMeeting;
break;
Expand Down Expand Up @@ -260,7 +260,7 @@ public function sendNotifications(Request $request, string $serverID): XmlRespon
$response = $client->request('GET', $url, [
'query' => [
'signed_parameters' => $jwtparams,
]
],
]);

$statusCode = $response->getStatusCode();
Expand Down

0 comments on commit 254df80

Please sign in to comment.