Update token regex on chanify (#1325)

pull/1329/head
edwinbernadus 2025-05-01 06:39:04 +07:00 committed by GitHub
parent 513eb194fe
commit ae7f8b80ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class NotifyChanify(NotifyBase):
'type': 'string',
'private': True,
'required': True,
'regex': (r'^[A-Z0-9_-]+$', 'i'),
'regex': (r'^[A-Z0-9._-]+$', 'i'),
},
})