From bbd625f3aadf9ce692a3ee8aaf65b8c573a7858b Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Wed, 2 Oct 2019 17:16:01 -0400 Subject: [PATCH] update help_text to include information about REFRESH_TOKEN_EXPIRE_SECONDS --- awx/api/conf.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/awx/api/conf.py b/awx/api/conf.py index c4a4ea1f5b..688aad162f 100644 --- a/awx/api/conf.py +++ b/awx/api/conf.py @@ -43,8 +43,10 @@ register( label=_('OAuth 2 Timeout Settings'), help_text=_('Dictionary for customizing OAuth 2 timeouts, available items are ' '`ACCESS_TOKEN_EXPIRE_SECONDS`, the duration of access tokens in the number ' - 'of seconds, and `AUTHORIZATION_CODE_EXPIRE_SECONDS`, the duration of ' - 'authorization codes in the number of seconds.'), + 'of seconds, `AUTHORIZATION_CODE_EXPIRE_SECONDS`, the duration of ' + 'authorization codes in the number of seconds, and `REFRESH_TOKEN_EXPIRE_SECONDS`, ' + 'the duration of refresh tokens, after expired access tokens, ' + 'in the number of seconds.'), category=_('Authentication'), category_slug='authentication', )