From 451bd8e82b5a9644862367dc5952e87a1802496f Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 11 Jul 2017 14:22:03 +0200 Subject: Endpoint to remove a user from a room Signed-off-by: Joas Schilling --- appinfo/routes.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'appinfo') diff --git a/appinfo/routes.php b/appinfo/routes.php index 40b96225f..794dfdf5d 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -139,6 +139,15 @@ return [ 'token' => '^[a-z0-9]{4,30}$', ], ], + [ + 'name' => 'Room#removeParticipantFromRoom', + 'url' => '/api/{apiVersion}/room/{token}/participants', + 'verb' => 'DELETE', + 'requirements' => [ + 'apiVersion' => 'v1', + 'token' => '^[a-z0-9]{4,30}$', + ], + ], [ 'name' => 'Room#removeSelfFromRoom', 'url' => '/api/{apiVersion}/room/{token}/participants/self', -- cgit v1.2.3