From e668280d67cd0bd4a123588bae090420578a3bbc Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Wed, 10 Dec 2014 16:08:42 -0500 Subject: [PATCH] Permissions type text change On the permissions page for "Job Template" type, the explanation text at the bottom needed to be updated from the 'deploy' verbage to the 'job template' verbage --- awx/ui/static/js/helpers/Permissions.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui/static/js/helpers/Permissions.js b/awx/ui/static/js/helpers/Permissions.js index 082708b5cb..bc263549cb 100644 --- a/awx/ui/static/js/helpers/Permissions.js +++ b/awx/ui/static/js/helpers/Permissions.js @@ -35,12 +35,12 @@ angular.module('PermissionsHelper', []) scope.projectrequired = true; html = "
\n" + "
Create
\n" + - "
Allow the user or team to create deployments. This implies that they can run and check deployments
\n" + + "
Allow the user or team to create job templates. This implies that they have the Run and Check permissions.
\n" + "
Run
\n" + - "
Allow the user or team to perform a live deployment of the project against the inventory. In Run mode modules will " + + "
Allow the user or team to run a job template from the project against the inventory. In Run mode modules will " + "be executed, and changes to the inventory will occur.
\n" + "
Check
\n" + - "
Only allow the user or team to deploy the project against the inventory as a dry-run operation. In Check mode, module operations " + + "
Only allow the user or team to run the project against the inventory as a dry-run operation. In Check mode, module operations " + "will only be simulated. No changes will occur.
\n" + "
\n"; scope.permissionTypeHelp = $sce.trustAsHtml(html);