mirror of
https://github.com/lucaspalomodevelop/indico-plugins.git
synced 2026-03-13 07:29:39 +00:00
VC/Zoom: Disable duplicate room name check
This commit is contained in:
parent
17416dbc90
commit
d935bb27c7
@ -117,6 +117,10 @@ class VCRoomForm(VCRoomFormBase):
|
||||
if email is None or ZoomIndicoClient().get_user(email, silent=True) is None:
|
||||
raise ValidationError(_('This user has no Zoom account'))
|
||||
|
||||
def validate_name(self, field):
|
||||
# Duplicate names are fine on Zoom
|
||||
pass
|
||||
|
||||
@generated_data
|
||||
def host(self):
|
||||
if self.host_choice is None:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user