From 4acdb566dcf11a8e79346430026978b21714f0fe Mon Sep 17 00:00:00 2001 From: Tanner Prestegard <tanner.prestegard@ligo.org> Date: Wed, 10 Jul 2019 09:41:11 -0500 Subject: [PATCH] settings: remove unused ADMIN_MANAGED_GROUPS This is not needed anymore with the changes to the group infrastructure which add an optional 'ldap_name' to groups whose membership should be managed by LDAP queries and shib sessions. --- config/settings/base.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/config/settings/base.py b/config/settings/base.py index 0547d77cd..37e16a418 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -149,16 +149,6 @@ SUPEREVENT_MANAGERS_GROUP = 'superevent_managers' # Analysis group name for non-GW events EXTERNAL_ANALYSIS_GROUP = 'External' -# Groups directly managed by GraceDB admins -ADMIN_MANAGED_GROUPS = [EM_ADVOCATE_GROUP, EXEC_GROUP, PUBLIC_GROUP, - SUPEREVENT_MANAGERS_GROUP, ACCESS_MANAGERS_GROUP, 'raven_users'] -# NOTE: soon, only superevent_managers will be fully managed by us. The other -# groups will be managed by the LIGO auth infrastructure for human users. But -# we will still have to still manage robot account membership in these groups: -# access_managers, executives, and em_advocates. -# NOTE: public_users is also managed by us and has only one member -# (guardian.AnonymousUser) - # Tag to apply to log messages to allow EM partners to view EXTERNAL_ACCESS_TAGNAME = 'lvem' PUBLIC_ACCESS_TAGNAME = 'public' -- GitLab