mirror of
https://github.com/caronc/apprise.git
synced 2025-02-16 18:21:01 +01:00
Bugfix + Eased up on Nexmo credential QA (left for upstream)
This commit is contained in:
parent
e54e4e7a07
commit
138c8ebf07
@ -82,7 +82,7 @@ class NotifyNexmo(NotifyBase):
|
||||
'name': _('API Key'),
|
||||
'type': 'string',
|
||||
'required': True,
|
||||
'regex': (r'^AC[a-z0-9]{8}$', 'i'),
|
||||
'regex': (r'^[a-z0-9]+$', 'i'),
|
||||
'private': True,
|
||||
},
|
||||
'secret': {
|
||||
@ -90,7 +90,7 @@ class NotifyNexmo(NotifyBase):
|
||||
'type': 'string',
|
||||
'private': True,
|
||||
'required': True,
|
||||
'regex': (r'^[a-z0-9]{16}$', 'i'),
|
||||
'regex': (r'^[a-z0-9]+$', 'i'),
|
||||
},
|
||||
'from_phone': {
|
||||
'name': _('From Phone No'),
|
||||
|
Loading…
Reference in New Issue
Block a user