From fc9194d517e0ee109398dbae4a145e80bf54f2d6 Mon Sep 17 00:00:00 2001 From: dandds Date: Mon, 7 Jan 2019 12:23:36 -0500 Subject: [PATCH] do not display task order officers as regular workspace roles --- atst/forms/data.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/atst/forms/data.py b/atst/forms/data.py index b02cfb64..ebcd3b20 100644 --- a/atst/forms/data.py +++ b/atst/forms/data.py @@ -105,9 +105,16 @@ COMPLETION_DATE_RANGES = [ ("Above 12 months", "Above 12 months"), ] +NONDISPLAY_ROLES = [ + "contracting_officer", + "contracting_officer_representative", + "security_officer", +] + WORKSPACE_ROLES = [ (role["name"], {"name": role["display_name"], "description": role["description"]}) for role in WORKSPACE_ROLE_DEFINITIONS + if role["name"] not in NONDISPLAY_ROLES ] ENVIRONMENT_ROLES = [