Update public
This commit is contained in:
parent
0d3c0b8452
commit
a7e4902b7e
|
@ -1,4 +1,4 @@
|
|||
topButtons: none
|
||||
topButtons: git-links
|
||||
disableChat: false
|
||||
winter: false
|
||||
enableSlide: false
|
||||
|
|
2
public
2
public
|
@ -1 +1 @@
|
|||
Subproject commit 6274c9e98aec79130b704a0bb5501597ecd3905c
|
||||
Subproject commit 00a9fe84ef73aac6653ace559de63cc23b67b948
|
|
@ -19,7 +19,7 @@ const logger = new Logger("WebSocket Server");
|
|||
export const httpIpCache = new Map<string, number>();
|
||||
|
||||
interface IFrontendConfig {
|
||||
topButtons: "original" | "mppnet" | "none";
|
||||
topButtons: "original" | "mppnet" | "git-links" | "none";
|
||||
disableChat: boolean;
|
||||
winter: boolean;
|
||||
enableSlide: boolean;
|
||||
|
@ -34,7 +34,7 @@ export const frontendConfigPath = "config/frontend.yml";
|
|||
export const frontendConfig = ConfigManager.loadConfig<IFrontendConfig>(
|
||||
frontendConfigPath,
|
||||
{
|
||||
topButtons: "original",
|
||||
topButtons: "git-links",
|
||||
disableChat: false,
|
||||
winter: false,
|
||||
enableSlide: false,
|
||||
|
|
Loading…
Reference in New Issue