Skip to content

Commit

Permalink
Bugfix + Eased up on Nexmo credential QA (left for upstream)
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Jul 28, 2020
1 parent e54e4e7 commit 138c8eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apprise/plugins/NotifyNexmo.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ 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': {
'name': _('API Secret'),
'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'),
Expand Down

0 comments on commit 138c8eb

Please sign in to comment.