We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33dcd30 commit d99bc98Copy full SHA for d99bc98
1 file changed
src/vs/platform/environment/common/environment.ts
@@ -58,15 +58,19 @@ export interface IEnvironmentService {
58
59
// --- data paths
60
backupHome: URI;
61
- userHome?: URI;
62
untitledWorkspacesHome: URI;
63
64
// --- misc
65
disableTelemetry: boolean;
66
67
- // TODO@sandeep move into node layer
+ // TODO@sandeep move into node layer (https://github.com/microsoft/vscode/issues/94504)
68
serviceMachineIdResource?: URI;
69
+ /**
70
+ * @deprecated use IRemotePathService#userHome instead (https://github.com/microsoft/vscode/issues/94506)
71
+ */
72
+ userHome?: URI;
73
+
74
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
75
// NOTE: DO NOT ADD ANY OTHER PROPERTY INTO THE COLLECTION HERE
76
// UNLESS THIS PROPERTY IS SUPPORTED BOTH IN WEB AND DESKTOP!!!!
0 commit comments