Added /unban $user_id

This commit is contained in:
Emmanuel ROHEE 2014-09-03 15:58:28 +02:00
parent 073a42cc95
commit 277fd2250a

View File

@ -298,6 +298,16 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
}
break;
case "/unban":
// Unban the user id from the room
if (2 === args.length) {
var user_id = args[1];
// Reset the user membership to leave to unban him
promise = matrixService.membershipChange($scope.room_id, user_id, "leave");
}
break;
case "/op":
// Define the power level of an user
if (3 === args.length) {