1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

change grant reference to code in ui help text

This commit is contained in:
John Mitchell 2019-01-18 13:13:15 -05:00
parent b75ba7ebea
commit 2df51a923d
No known key found for this signature in database
GPG Key ID: FE6A9B5BD4EB5C94

View File

@ -23,9 +23,10 @@ export default ['GetBasePath', '$q', 'Rest', 'i18n',
// we need to split those out into the root of the options payload
// in order for them to be consumed
var appendOauth2ProviderKeys = (optsFromAPI) => {
var unnestOauth2ProviderKey = (key, label, parentKey) => {
var unnestOauth2ProviderKey = (key, help_text, label, parentKey) => {
optsFromAPI[key] = _.cloneDeep(optsFromAPI[parentKey]);
optsFromAPI[key].label = i18n._(label);
optsFromAPI[key].label = label;
optsFromAPI[key].help_text = help_text;
optsFromAPI[key].type = optsFromAPI[parentKey].child.type;
optsFromAPI[key].min_value = optsFromAPI[parentKey].child.min_value;
if (optsFromAPI[parentKey].default) {
@ -34,10 +35,12 @@ export default ['GetBasePath', '$q', 'Rest', 'i18n',
delete optsFromAPI[key].child;
};
unnestOauth2ProviderKey('ACCESS_TOKEN_EXPIRE_SECONDS',
'Access Token Expiration',
i18n._('The duration (in seconds) access tokens remain valid since their creation.'),
i18n._('Access Token Expiration'),
'OAUTH2_PROVIDER');
unnestOauth2ProviderKey('AUTHORIZATION_CODE_EXPIRE_SECONDS',
'Authorization Code Expiration',
i18n._('The duration (in seconds) authorization codes remain valid since their creation.'),
i18n._('Authorization Code Expiration'),
'OAUTH2_PROVIDER');
return optsFromAPI;
};