Talk about trial mode on API keys page

When you make a ‘normal’ API key it won’t work as described until your
serivce is live.

We should make this clear at the point at which you choose this key.
This commit is contained in:
Chris Hill-Scott
2016-08-10 16:49:25 +01:00
parent 981777a72a
commit e82cb21ecc
3 changed files with 11 additions and 6 deletions

View File

@@ -295,11 +295,6 @@ class CreateKeyForm(Form):
key_type = RadioField(
'What should Notify do when you use this key?',
choices=[
(KEY_TYPE_NORMAL, 'Send messages to anyone'),
(KEY_TYPE_TEST, 'Simulate sending messages to anyone'),
(KEY_TYPE_TEAM, 'Only send messages to members of your team')
],
validators=[
DataRequired()
]