mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-31 03:52:01 +08:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
import { AbstractViewSettings } from 'Knoin/AbstractViews';
|
|
|
|
export class AdminSettingsBranding extends AbstractViewSettings {
|
|
constructor() {
|
|
super();
|
|
this.addSetting('title');
|
|
this.addSetting('loadingDescription');
|
|
this.addSetting('faviconUrl');
|
|
}
|
|
}
|