Browse Source
Fixes after push
Signed-off-by: Vitor Mattos <vitor@php.rio>
pull/8446/head
Vitor Mattos
3 years ago
No known key found for this signature in database
GPG Key ID: B7AB4B76A7CA7318
3 changed files with
3 additions and
12 deletions
-
appinfo/routes/routesCallController.php
-
docs/chat.md
-
docs/index.md
|
|
|
@ -28,11 +28,6 @@ $requirements = [ |
|
|
|
'token' => '[a-z0-9]{4,30}', |
|
|
|
]; |
|
|
|
|
|
|
|
$requirementsRecording = [ |
|
|
|
'apiVersion' => 'v1', |
|
|
|
'token' => '[a-z0-9]{4,30}', |
|
|
|
]; |
|
|
|
|
|
|
|
return [ |
|
|
|
'ocs' => [ |
|
|
|
/** @see \OCA\Talk\Controller\CallController::getPeersForCall() */ |
|
|
|
@ -45,9 +40,5 @@ return [ |
|
|
|
['name' => 'Call#updateCallFlags', 'url' => '/api/{apiVersion}/call/{token}', 'verb' => 'PUT', 'requirements' => $requirements], |
|
|
|
/** @see \OCA\Talk\Controller\CallController::leaveCall() */ |
|
|
|
['name' => 'Call#leaveCall', 'url' => '/api/{apiVersion}/call/{token}', 'verb' => 'DELETE', 'requirements' => $requirements], |
|
|
|
/** @see \OCA\Talk\Controller\CallController::startRecording() */ |
|
|
|
['name' => 'Call#startRecording', 'url' => '/api/{apiVersion}/call/{token}/recording', 'verb' => 'POST', 'requirements' => $requirementsRecording], |
|
|
|
/** @see \OCA\Talk\Controller\CallController::stopRecording() */ |
|
|
|
['name' => 'Call#stopRecording', 'url' => '/api/{apiVersion}/call/{token}/recording', 'verb' => 'DELETE', 'requirements' => $requirementsRecording], |
|
|
|
], |
|
|
|
]; |
|
|
|
@ -393,7 +393,7 @@ See [OCP\RichObjectStrings\Definitions](https://github.com/nextcloud/server/blob |
|
|
|
* `message_expiration_disabled` - {actor} disabled message expiration |
|
|
|
* `breakout_rooms_started` - {actor} started breakout rooms |
|
|
|
* `breakout_rooms_stopped` - {actor} stopped breakout rooms |
|
|
|
* `audio_recording_started` - {actor} started a video recording |
|
|
|
* `audio_recording_stopped` - {actor} stopped a video recording |
|
|
|
* `video_recording_started` - {actor} started a video recording |
|
|
|
* `video_recording_stopped` - {actor} stopped a video recording |
|
|
|
* `audio_recording_started` - {actor} started an audio recording |
|
|
|
* `audio_recording_stopped` - {actor} stopped an audio recording |
|
|
|
@ -15,7 +15,7 @@ |
|
|
|
* [Conversation API](conversation.md) |
|
|
|
* [Participant API](participant.md) |
|
|
|
* [Call API](call.md) |
|
|
|
* [Call recordingn API](call.md) |
|
|
|
* [Call recording API](call.md) |
|
|
|
* [Chat API](chat.md) |
|
|
|
* [Reaction API](reaction.md) |
|
|
|
* [Webinar API](webinar.md) |
|
|
|
|