mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-21 18:02:14 -07:00
19 lines
447 B
TypeScript
19 lines
447 B
TypeScript
import { ServerDispatch } from 'store';
|
|
|
|
export class AdminPersistence {
|
|
static adjustMod(userName: string, shouldBeMod: boolean, shouldBeJudge: boolean) {
|
|
ServerDispatch.adjustMod(userName, shouldBeMod, shouldBeJudge)
|
|
}
|
|
|
|
static reloadConfig() {
|
|
ServerDispatch.reloadConfig();
|
|
}
|
|
|
|
static shutdownServer() {
|
|
ServerDispatch.shutdownServer();
|
|
}
|
|
|
|
static updateServerMessage() {
|
|
ServerDispatch.updateServerMessage();
|
|
}
|
|
}
|