Revert "new WS ControlRequest data type"

This reverts commit 70e8b215cb.
This commit is contained in:
Miroslav Šedivý
2020-06-16 01:01:23 +02:00
parent 8113ce276c
commit 01564a57b5
5 changed files with 3 additions and 21 deletions

View File

@ -29,7 +29,6 @@ export type WebSocketPayloads =
| MemberListPayload
| Member
| ControlPayload
| ControlRequestPayload
| ControlClipboardPayload
| ControlKeyboardPayload
| ChatPayload
@ -113,10 +112,6 @@ export interface ControlPayload {
id: string
}
export interface ControlRequestPayload {
keyboard_layout: string
}
export interface ControlTargetPayload {
id: string
target: string

View File

@ -64,7 +64,7 @@ export const actions = actionTree(
}
if (!getters.hosting) {
$client.sendMessage(EVENT.CONTROL.REQUEST, { keyboard_layout: accessor.settings.keyboard_layout })
$client.sendMessage(EVENT.CONTROL.REQUEST)
} else {
$client.sendMessage(EVENT.CONTROL.RELEASE)
}