mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
14 lines
604 B
TypeScript
14 lines
604 B
TypeScript
import { create } from '@bufbuild/protobuf';
|
|
import webClient from '../../WebClient';
|
|
import { Command_ListUsers_ext, Command_ListUsersSchema } from 'generated/proto/session_commands_pb';
|
|
import { SessionPersistence } from '../../persistence';
|
|
import { Response_ListUsers_ext } from 'generated/proto/response_list_users_pb';
|
|
|
|
export function listUsers(): void {
|
|
webClient.protobuf.sendSessionCommand(Command_ListUsers_ext, create(Command_ListUsersSchema), {
|
|
responseExt: Response_ListUsers_ext,
|
|
onSuccess: (response) => {
|
|
SessionPersistence.updateUsers(response.userList);
|
|
},
|
|
});
|
|
}
|