[MM-44644] Update configured server URL from SiteURL if available (#2152)

This commit is contained in:
Devin Binnie
2022-06-14 12:30:24 -04:00
committed by GitHub
parent 3d353d021b
commit 537ed1dd0c
5 changed files with 40 additions and 4 deletions

View File

@@ -4,6 +4,12 @@
export type RemoteInfo = {
name: string;
serverVersion?: string;
siteURL?: string;
hasFocalboard?: boolean;
hasPlaybooks?: boolean;
};
export type ClientConfig = {
Version: string;
SiteURL: string;
}