mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-12 23:27:22 +00:00
Use more modern dict composition syntax
This commit is contained in:
parent
fea862cc3a
commit
b4804e08ea
@ -132,7 +132,7 @@ class ZoomPlugin(VCPluginMixin, IndicoPlugin):
|
||||
vc_room_form = VCRoomForm
|
||||
vc_room_attach_form = VCRoomAttachForm
|
||||
friendly_name = 'Zoom'
|
||||
default_settings = dict(VCPluginMixin.default_settings, **{
|
||||
default_settings = VCPluginMixin.default_settings | {
|
||||
'api_key': '',
|
||||
'api_secret': '',
|
||||
'webhook_token': '',
|
||||
@ -149,7 +149,7 @@ class ZoomPlugin(VCPluginMixin, IndicoPlugin):
|
||||
'creation_email_footer': None,
|
||||
'send_host_url': False,
|
||||
'phone_link': '',
|
||||
})
|
||||
}
|
||||
|
||||
def init(self):
|
||||
super().init()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user