tweb/src/components/sidebarLeft/tabs/privacy/forwardMessages.ts
Eduard Kuzmenko f746a661e7 more fixes
2022-11-18 13:43:52 +04:00

29 lines
1.0 KiB
TypeScript

/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
import {SliderSuperTabEventable} from '../../../sliderTab';
import PrivacySection from '../../../privacySection';
import {LangPackKey} from '../../../../lib/langPack';
export default class AppPrivacyForwardMessagesTab extends SliderSuperTabEventable {
public init() {
this.header.classList.add('with-border');
this.container.classList.add('privacy-tab', 'privacy-forward-messages');
this.setTitle('PrivacySettings.Forwards');
const caption: LangPackKey = 'PrivacySettingsController.Forwards.CustomHelp';
new PrivacySection({
tab: this,
title: 'PrivacyForwardsTitle',
inputKey: 'inputPrivacyKeyForwards',
captions: [caption, caption, caption],
exceptionTexts: ['PrivacySettingsController.NeverAllow', 'PrivacySettingsController.AlwaysAllow'],
appendTo: this.scrollable,
managers: this.managers
});
}
}