diff --git a/client/common/configuration/templates/ChannelConfigurationElement.ts b/client/common/configuration/templates/ChannelConfigurationElement.ts new file mode 100644 index 00000000..9343ef6d --- /dev/null +++ b/client/common/configuration/templates/ChannelConfigurationElement.ts @@ -0,0 +1,42 @@ +import { html, LitElement } from 'lit' +import { repeat } from 'lit-html/directives/repeat.js' +import { customElement, property } from 'lit/decorators.js' + + +@customElement('channel-configuration') +export class ChannelConfigurationElement extends LitElement { + + @property() + public list: string[] = ["foo", "bar", "baz"] + + @property() + public newEl: string = 'change_me' + + createRenderRoot = () => { + return this + } + + render() { + return html` +
You can configure the bot to respond to commands. A command is a message starting with a "!", like for example "!help" that calls the "help" command. For more information about how to configure this feature, please refer to the documentation by clicking on the help button.
+ + + +{{forbiddenWords}} {{forbiddenWordsDesc2}} | +{{forbiddenWords}} {{forbiddenWordsDesc2}} | {{forbiddenWordsRegexp}} {{forbiddenWordsRegexpDesc}} | {{forbiddenWordsApplyToModerators}} {{forbiddenWordsApplyToModeratorsDesc}} | -{{forbiddenWordsLabel}} {{forbiddenWordsLabelDesc}} | -{{forbiddenWordsReason}} {{forbiddenWordsReasonDesc}} | -{{forbiddenWordsComments}} {{forbiddenWordsCommentsDesc}} | -Remove Remove Row | +{{forbiddenWordsLabel}} {{forbiddenWordsLabelDesc}} | +{{forbiddenWordsReason}} {{forbiddenWordsReasonDesc}} | +{{forbiddenWordsComments}} {{forbiddenWordsCommentsDesc}} | +Remove Remove Row |
---|---|---|---|---|---|---|---|---|---|---|---|
{{! warning: don't add extra line break in textarea! }} |