Updated the field label for the callback URL

This commit is contained in:
Pete Herlihy
2017-11-03 16:02:43 +00:00
committed by GitHub
parent 4b2ba34d68
commit 431e269cf9

View File

@@ -693,10 +693,10 @@ class ServiceInboundNumberForm(Form):
class ServiceInboundApiForm(Form):
url = StringField("Inbound sms url",
url = StringField("Callback URL",
validators=[DataRequired(message='Cant be empty'),
Regexp(regex="^https.*",
message='Must be a valid https url')]
message='Must be a valid https URL')]
)
bearer_token = PasswordFieldShowHasContent("Bearer token",
validators=[DataRequired(message='Cant be empty'),