Skip to content

Commit f24a3d0

Browse files
BLUEBUTTON-737 Updates help text. (#705)
* Updates help text * Attempts to fix multi-line string
1 parent 839a799 commit f24a3d0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/dot_ext/models.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ class Application(AbstractApplication):
4040
website_uri = models.URLField(default="", blank=True, null=True, max_length=512, verbose_name="Website URI",
4141
help_text="This is typically a home/download website for the application. "
4242
"For example, https://www.example.org or http://www.example.org .")
43-
help_text = _('Allowed redirect URIs. Space or new line separated.')
43+
help_text = _("Multiple redirect URIs can"
44+
" be separated by a space or on"
45+
" a separate line. Read more"
46+
" about implementing redirect"
47+
" URIs in our documentation.")
4448
redirect_uris = models.TextField(help_text=help_text,
4549
blank=True)
4650
logo_uri = models.CharField(

0 commit comments

Comments
 (0)