refactor: move status functions to footer view

This commit is contained in:
Baptiste Grob
2020-09-29 12:08:19 +02:00
parent 9019dda003
commit 212a65f463
7 changed files with 155 additions and 199 deletions

View File

@@ -36,7 +36,7 @@ type WebServices = {
autolockService: AutolockService
archiveService: ArchiveManager
nativeExtService: NativeExtManager
statusService: StatusManager
statusManager: StatusManager
themeService: ThemeManager
prefsService: PreferencesManager
keyboardService: KeyboardManager
@@ -135,8 +135,8 @@ export class WebApplication extends SNApplication {
return this.webServices.nativeExtService;
}
public getStatusService() {
return this.webServices.statusService;
getStatusManager() {
return this.webServices.statusManager;
}
public getThemeService() {