// SPDX-FileCopyrightText: 2024 John Livingston // // SPDX-License-Identifier: AGPL-3.0-only import { __ } from 'i18n' import BaseModal from 'plugins/modal/modal.js' import { api } from '@converse/headless/core' import { modal_close_button as ModalCloseButton } from 'plugins/modal/templates/buttons.js' import { html } from 'lit' import 'livechat-external-login-content.js' class PollFormModal extends BaseModal { initialize () { super.initialize() } renderModal () { return html`` } getModalTitle () { // eslint-disable-next-line no-undef return __(LOC_new_poll) } renderModalFooter () { return html` ` } } api.elements.define('livechat-converse-poll-form-modal', PollFormModal)