mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Added /unban $user_id
This commit is contained in:
parent
073a42cc95
commit
277fd2250a
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user