Skip to content

Commit

Permalink
feat(SystemSettings): added more settings on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverschwendener committed Feb 24, 2024
1 parent de0a69c commit e1af2a3
Show file tree
Hide file tree
Showing 4 changed files with 344 additions and 18 deletions.
2 changes: 1 addition & 1 deletion src/main/Extensions/SystemSettings/SystemSettingsModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import type { ExtensionModule } from "../ExtensionModule";
import { MacOsSystemSettingRepository } from "./MacOsSystemSettingRepository";
import type { SystemSettingRepository } from "./SystemSettingRepository";
import { SystemSettingsExtension } from "./SystemSettingsExtension";
import { WindowsSystemSettingsRepository } from "./WindowsSystemRepository";
import { WindowsSystemSettingActionHandler } from "./WindowsSystemSettingActionHandler";
import { WindowsSystemSettingsRepository } from "./WindowsSystemSettingRepository";

export class SystemSettingsModule implements ExtensionModule {
public bootstrap(dependencyRegistry: DependencyRegistry<Dependencies>): ExtensionBootstrapResult {
Expand Down
16 changes: 0 additions & 16 deletions src/main/Extensions/SystemSettings/WindowsSystemRepository.ts

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/Extensions/SystemSettings/WindowsSystemSetting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ export class WindowsSystemSetting implements SystemSetting {
}

private getId(): string {
return `WindowsSystemSetting:${this.name}`;
return `WindowsSystemSetting:${this.name}[${this.settingsUrl}]`;
}
}
Loading

0 comments on commit e1af2a3

Please sign in to comment.