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);