From c45e643522ae7ae161be57dc0080171234dd684d Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Thu, 30 Aug 2018 16:21:41 -0400 Subject: [PATCH] Add real roles and descriptions --- atst/forms/data.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/atst/forms/data.py b/atst/forms/data.py index d1b1a976..88758792 100644 --- a/atst/forms/data.py +++ b/atst/forms/data.py @@ -104,9 +104,9 @@ COMPLETION_DATE_RANGES = [ ] WORKSPACE_ROLES = [ - ("admin", "Admin", "Lorem ipsum dolor sit amet, consectetur adipiscing elit."), - ("billing_auditor", "Billing Auditor", "Nullam sit amet sem volutpat, congue est nec, euismod leo."), - ("developer", "Developer", "Aenean suscipit facilisis eros, vitae malesuada dui egestas in."), - ("owner", "Owner", "Nullam luctus a arcu non placerat."), - ("security_auditor", "Security Auditor", "In ut leo vitae libero convallis finibus nec ac massa. Aliquam bibendum nulla at eros dapibus tristique."), + ("owner", "Workspace Owner", "Can add, edit, deactivate access to all projects, environments, and members. Can view budget reports. Can start and edit JEDI Cloud requests."), + ("admin", "Administrator", "Can add and edit projects, environments, members, but cannot deactivate. Cannot view budget reports or JEDI Cloud requests."), + ("developer", "Developer", "Can view only the projects and environments they are granted access to. Can also view members associated with each environment."), + ("billing_auditor", "Billing Auditor", "Can view only the projects and environments they are granted access to. Can also view budgets and reports associated with the workspace."), + ("security_auditor", "Security Auditor", "Can view only the projects and environments they are granted access to. Can also view activity logs."), ]