Merge branch '3.0.x'

This commit is contained in:
Adrian Moennich 2021-11-16 12:56:24 +01:00
commit f7b433a6a1
7 changed files with 17 additions and 2 deletions

View File

@ -12,5 +12,7 @@ filterwarnings =
ignore::UserWarning
# port_for via pytest-redis
ignore:Sampling from a set deprecated:DeprecationWarning:port_for
# celery
ignore:Creating a LegacyVersion has been deprecated:DeprecationWarning
; use redis-server from $PATH
redis_exec = redis-server

View File

@ -12,5 +12,7 @@ filterwarnings =
ignore::UserWarning
# port_for via pytest-redis
ignore:Sampling from a set deprecated:DeprecationWarning:port_for
# celery
ignore:Creating a LegacyVersion has been deprecated:DeprecationWarning
; use redis-server from $PATH
redis_exec = redis-server

View File

@ -12,5 +12,7 @@ filterwarnings =
ignore::UserWarning
# port_for via pytest-redis
ignore:Sampling from a set deprecated:DeprecationWarning:port_for
# celery
ignore:Creating a LegacyVersion has been deprecated:DeprecationWarning
; use redis-server from $PATH
redis_exec = redis-server

View File

@ -12,5 +12,7 @@ filterwarnings =
ignore::UserWarning
# port_for via pytest-redis
ignore:Sampling from a set deprecated:DeprecationWarning:port_for
# celery
ignore:Creating a LegacyVersion has been deprecated:DeprecationWarning
; use redis-server from $PATH
redis_exec = redis-server

View File

@ -11,6 +11,11 @@
## Changelog
### 3.0.2
- Fix JavaScript being included twice on conference VC page
- Fix JavaScript error breaking the "make me co-host" button
### 3.0.1
- Adapt to Indico 3.0.3 changes (option to show videoconference link on the main conference page)

View File

@ -17,7 +17,7 @@ from indico.core import signals
from indico.core.auth import multipass
from indico.core.errors import UserValueError
from indico.core.plugins import IndicoPlugin, render_plugin_template, url_for_plugin
from indico.modules.events.views import WPConferenceDisplayBase, WPSimpleEventDisplay
from indico.modules.events.views import WPConferenceDisplay, WPSimpleEventDisplay
from indico.modules.vc import VCPluginMixin, VCPluginSettingsFormBase
from indico.modules.vc.exceptions import VCRoomError, VCRoomNotFoundError
from indico.modules.vc.models.vc_rooms import VCRoom, VCRoomStatus
@ -158,7 +158,7 @@ class ZoomPlugin(VCPluginMixin, IndicoPlugin):
self.inject_bundle('main.js', WPSimpleEventDisplay)
self.inject_bundle('main.js', WPVCEventPage)
self.inject_bundle('main.js', WPVCManageEvent)
self.inject_bundle('main.js', WPConferenceDisplayBase)
self.inject_bundle('main.js', WPConferenceDisplay)
@property
def logo_url(self):

View File

@ -12,5 +12,7 @@ filterwarnings =
ignore::UserWarning
# port_for via pytest-redis
ignore:Sampling from a set deprecated:DeprecationWarning:port_for
# celery
ignore:Creating a LegacyVersion has been deprecated:DeprecationWarning
; use redis-server from $PATH
redis_exec = redis-server