Thomas Kaul
18 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
4 deletions
-
apps/client/src/app/services/settings-storage.service.ts
|
@ -12,11 +12,11 @@ export class SettingsStorageService { |
|
|
return window.localStorage.getItem(aKey); |
|
|
return window.localStorage.getItem(aKey); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public setSetting(aKey: string, aValue: string) { |
|
|
|
|
|
window.localStorage.setItem(aKey, aValue); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public removeSetting(aKey: string) { |
|
|
public removeSetting(aKey: string) { |
|
|
return window.localStorage.removeItem(aKey); |
|
|
return window.localStorage.removeItem(aKey); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public setSetting(aKey: string, aValue: string) { |
|
|
|
|
|
window.localStorage.setItem(aKey, aValue); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|