mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-04 22:00:42 +03:00
Flag all generated configs as non-default by default
The app is expected to flag a particular config themselves as default. This is primarily intended so that other parts of the app can determine what to do based on whether or not the config is a default config. See https://github.com/vector-im/riot-web/issues/9290
This commit is contained in:
parent
4c1ac38dd4
commit
bb16357636
1 changed files with 3 additions and 0 deletions
|
@ -26,6 +26,8 @@ export class ValidatedServerConfig {
|
||||||
|
|
||||||
isUrl: string;
|
isUrl: string;
|
||||||
identityEnabled: boolean;
|
identityEnabled: boolean;
|
||||||
|
|
||||||
|
isDefault: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class AutoDiscoveryUtils {
|
export default class AutoDiscoveryUtils {
|
||||||
|
@ -99,6 +101,7 @@ export default class AutoDiscoveryUtils {
|
||||||
hsNameIsDifferent: url.hostname !== preferredHomeserverName,
|
hsNameIsDifferent: url.hostname !== preferredHomeserverName,
|
||||||
isUrl: preferredIdentityUrl,
|
isUrl: preferredIdentityUrl,
|
||||||
identityEnabled: !SdkConfig.get()['disable_identity_server'],
|
identityEnabled: !SdkConfig.get()['disable_identity_server'],
|
||||||
|
isDefault: false,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue