mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-27 02:59:21 +03:00
Removed User About Screen, it is unused
This commit is contained in:
parent
e3e5929b21
commit
496c8f59ae
4 changed files with 0 additions and 44 deletions
|
|
@ -68,7 +68,6 @@ import { IdentityModel } from 'Model/Identity';
|
|||
import { TemplateModel } from 'Model/Template';
|
||||
import { OpenPgpKeyModel } from 'Model/OpenPgpKey';
|
||||
|
||||
// import {AboutUserScreen} from 'Screen/User/About';
|
||||
import { LoginUserScreen } from 'Screen/User/Login';
|
||||
import { MailBoxUserScreen } from 'Screen/User/MailBox';
|
||||
import { SettingsUserScreen } from 'Screen/User/Settings';
|
||||
|
|
|
|||
|
|
@ -1,17 +0,0 @@
|
|||
import { AbstractScreen } from 'Knoin/AbstractScreen';
|
||||
|
||||
import { AboutUserView } from 'View/User/About';
|
||||
|
||||
import { getApp } from 'Helper/Apps/User';
|
||||
|
||||
class AboutUserScreen extends AbstractScreen {
|
||||
constructor() {
|
||||
super('about', [AboutUserView]);
|
||||
}
|
||||
|
||||
onShow() {
|
||||
getApp().setWindowTitle('RainLoop');
|
||||
}
|
||||
}
|
||||
|
||||
export { AboutUserScreen, AboutUserScreen as default };
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
import ko from 'ko';
|
||||
|
||||
import * as Settings from 'Storage/Settings';
|
||||
|
||||
import { view, ViewType } from 'Knoin/Knoin';
|
||||
import { AbstractViewNext } from 'Knoin/AbstractViewNext';
|
||||
|
||||
@view({
|
||||
name: 'View/User/About',
|
||||
type: ViewType.Center,
|
||||
templateID: 'About'
|
||||
})
|
||||
class AboutUserView extends AbstractViewNext {
|
||||
constructor() {
|
||||
super();
|
||||
this.version = ko.observable(Settings.appSettingsGet('version'));
|
||||
}
|
||||
}
|
||||
|
||||
export { AboutUserView, AboutUserView as default };
|
||||
Loading…
Add table
Add a link
Reference in a new issue