mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-05 06:22:52 +08:00
16 lines
379 B
JavaScript
16 lines
379 B
JavaScript
import Remote from 'Remote/Admin/Fetch';
|
|
|
|
import { AbstractViewRight } from 'Knoin/AbstractViews';
|
|
|
|
import { toggleLeftPanel } from 'Common/Globals';
|
|
|
|
export class PaneSettingsAdminView extends AbstractViewRight {
|
|
constructor() {
|
|
super('AdminPane');
|
|
this.toggleLeftPanel = toggleLeftPanel;
|
|
}
|
|
|
|
logoutClick() {
|
|
Remote.request('AdminLogout', () => rl.logoutReload());
|
|
}
|
|
}
|