Skip to content

Commit

Permalink
Use TinyMCE instead of CKEditor
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiefMaster committed Sep 28, 2023
1 parent fb0d895 commit bd21d83
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions vc_zoom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@

## Changelog

### 3.3

- Adapt to Indico 3.3 changes

### 3.2.4

- Adapt to Indico 3.2.6 changes
Expand Down
4 changes: 2 additions & 2 deletions vc_zoom/indico_vc_zoom/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from indico.util.user import principal_from_identifier
from indico.web.forms.fields import IndicoEnumSelectField, IndicoPasswordField, TextListField
from indico.web.forms.validators import HiddenUnless
from indico.web.forms.widgets import CKEditorWidget, SwitchWidget
from indico.web.forms.widgets import TinyMCEWidget, SwitchWidget

from indico_vc_zoom import _
from indico_vc_zoom.api import ZoomIndicoClient
Expand Down Expand Up @@ -108,7 +108,7 @@ class PluginSettingsForm(VCPluginSettingsFormBase):
widget=SwitchWidget(),
description=_('Participants may be kept in a waiting room by the host'))

creation_email_footer = TextAreaField(_('Creation email footer'), widget=CKEditorWidget(),
creation_email_footer = TextAreaField(_('Creation email footer'), widget=TinyMCEWidget(),
description=_('Footer to append to emails sent upon creation of a VC room'))

send_host_url = BooleanField(_('Send host URL'),
Expand Down
4 changes: 2 additions & 2 deletions vc_zoom/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = indico-plugin-vc-zoom
version = 3.2.4
version = 3.3-dev
description = Zoom video-conferencing plugin for Indico
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
Expand All @@ -22,7 +22,7 @@ zip_safe = false
include_package_data = true
python_requires = >=3.9.0, <3.12
install_requires =
indico>=3.2.6
indico>=3.3.dev0
PyJWT>=2.0.0,<3

[options.entry_points]
Expand Down

0 comments on commit bd21d83

Please sign in to comment.