We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__gitpod.getLocalMachineId
1 parent ca0c978 commit fccabb8Copy full SHA for fccabb8
src/extension.ts
@@ -69,6 +69,11 @@ export async function activate(context: vscode.ExtensionContext) {
69
}
70
}));
71
72
+ // For analitycs, will be called by gitpod-remote extension
73
+ context.subscriptions.push(vscode.commands.registerCommand('__gitpod.getLocalMachineId', () => {
74
+ return vscode.env.machineId;
75
+ }));
76
+
77
const authProvider = new GitpodAuthenticationProvider(context, logger, telemetry);
78
const remoteConnector = new RemoteConnector(context, logger, telemetry);
79
context.subscriptions.push(authProvider);
0 commit comments