mirror of https://github.com/sualko/cloud_bbb
Changed recordingReady endpoint HTTP method to POST, because bbb documentation set when recording for a meeting is ready, it will make a HTTP POST request to the given url. Check bbb documentation. https://docs.bigbluebutton.org/development/api/#recording-ready-callback-url.
parent
583f759e37
commit
baf28d07b3
|
@ -17,6 +17,6 @@ return [
|
|||
['name' => 'join#index', 'url' => '/b/{token}/{moderatorToken}', 'verb' => 'GET', 'defaults' => ['moderatorToken' => '']],
|
||||
['name' => 'restriction#user', 'url' => '/restrictions/user', 'verb' => 'GET'],
|
||||
['name' => 'hook#meetingEnded', 'url' => '/hook/ended/{token}/{mac}', 'verb' => 'GET'],
|
||||
['name' => 'hook#recordingReady', 'url' => '/hook/recording/{token}/{mac}', 'verb' => 'GET'],
|
||||
['name' => 'hook#recordingReady', 'url' => '/hook/recording/{token}/{mac}', 'verb' => 'POST'],
|
||||
]
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue