Update token regex on chanify (#1325)

This commit is contained in:
edwinbernadus
2025-05-01 06:39:04 +07:00
committed by GitHub
parent 513eb194fe
commit ae7f8b80ac

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'),
},
})