[vscode-ext-api] fix #111371: expose remote authority

This commit is contained in:
Anton Kosyakov
2021-08-04 08:37:21 +00:00
committed by Christof Marti
parent 6262da9c94
commit 84ea7afc17
2 changed files with 14 additions and 0 deletions

View File

@@ -332,6 +332,9 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
get remoteName() {
return getRemoteName(initData.remote.authority);
},
get remoteAuthority() {
return initData.remote.authority;
},
get uiKind() {
return initData.uiKind;
}