mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
36 lines
845 B
JavaScript
36 lines
845 B
JavaScript
import 'External/ko';
|
|
|
|
import { Settings, SettingsGet } from 'Common/Globals';
|
|
import { initThemes } from 'Stores/Theme';
|
|
|
|
import Remote from 'Remote/Admin/Fetch';
|
|
|
|
import { SettingsAdminScreen } from 'Screen/Admin/Settings';
|
|
import { LoginAdminScreen } from 'Screen/Admin/Login';
|
|
|
|
import { startScreens } from 'Knoin/Knoin';
|
|
import { AbstractApp } from 'App/Abstract';
|
|
|
|
export class AdminApp extends AbstractApp {
|
|
constructor() {
|
|
super(Remote);
|
|
this.weakPassword = ko.observable(false);
|
|
}
|
|
|
|
refresh() {
|
|
initThemes();
|
|
this.start();
|
|
}
|
|
|
|
start() {
|
|
if (!Settings.app('adminAllowed')) {
|
|
rl.route.root();
|
|
setTimeout(() => location.href = '/', 1);
|
|
} else if (SettingsGet('Auth')) {
|
|
this.weakPassword(SettingsGet('weakPassword'));
|
|
startScreens([SettingsAdminScreen]);
|
|
} else {
|
|
startScreens([LoginAdminScreen]);
|
|
}
|
|
}
|
|
}
|