Restructure group and client management messages.

This commit is contained in:
Juliusz Chroboczek
2020-08-12 12:40:40 +02:00
parent 88d2a96819
commit 675035ab29
2 changed files with 78 additions and 64 deletions
+8 -4
View File
@@ -1058,7 +1058,8 @@ function handleInput() {
return;
}
send({
type: 'clearchat',
type: 'groupaction',
kind: 'clearchat',
});
return;
case '/lock':
@@ -1068,7 +1069,8 @@ function handleInput() {
return;
}
send({
type: cmd.slice(1),
type: 'groupaction',
kind: cmd.slice(1),
});
return;
case '/record':
@@ -1078,7 +1080,8 @@ function handleInput() {
return;
}
send({
type: cmd.slice(1),
type: 'groupaction',
kind: cmd.slice(1),
});
return;
case '/op':
@@ -1106,7 +1109,8 @@ function handleInput() {
return;
}
send({
type: cmd.slice(1),
type: 'useraction',
kind: cmd.slice(1),
id: id,
});
return;