mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-30 07:46:27 +00:00
11 lines
262 B
JavaScript
11 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');
|
|
}
|
|
}
|