mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-11 16:44:48 -07:00
14 lines
575 B
TypeScript
14 lines
575 B
TypeScript
import { create } from '@bufbuild/protobuf';
|
|
import webClient from '../../WebClient';
|
|
import {
|
|
Command_UpdateAdminNotes_ext, Command_UpdateAdminNotesSchema,
|
|
} from 'generated/proto/moderator_commands_pb';
|
|
import { ModeratorPersistence } from '../../persistence';
|
|
|
|
export function updateAdminNotes(userName: string, notes: string): void {
|
|
webClient.protobuf.sendModeratorCommand(Command_UpdateAdminNotes_ext, create(Command_UpdateAdminNotesSchema, { userName, notes }), {
|
|
onSuccess: () => {
|
|
ModeratorPersistence.updateAdminNotes(userName, notes);
|
|
},
|
|
});
|
|
}
|