mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
Merge branch '3.0.x'
This commit is contained in:
commit
f7b433a6a1
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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):
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user