265
266
constructor(
267
>
@IEnvironmentService protected environmentService: IEnvironmentService,
userDataProfile.ts
268
>
@IFileService protected fileService: IFileService,
269
>
@IUriIdentityService protected uriIdentityService: IUriIdentityService,
270
>
@ILogService protected logService: ILogService
271
>
) {
272
>
super();
273
>
this.profilesHome = joinPath(this.environmentService.userRoamingDataHome, 'profiles');
274
>
this.profilesCacheHome = joinPath(this.environmentService.cacheHome, 'CachedProfilesData');
275
>
}
276
277
init(): void {