mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 00:08:18 +08:00
18 lines
309 B
JavaScript
18 lines
309 B
JavaScript
import { settings } from 'Common/Links';
|
|
|
|
import { AbstractViewLeft } from 'Knoin/AbstractViews';
|
|
|
|
export class SettingsMenuUserView extends AbstractViewLeft {
|
|
/**
|
|
* @param {Object} screen
|
|
*/
|
|
constructor(screen) {
|
|
super();
|
|
|
|
this.menu = screen.menu;
|
|
}
|
|
|
|
link(route) {
|
|
return settings(route);
|
|
}
|
|
}
|