From 49eb3ca79172905bf49bab1486ecb91c593ea1d7 Mon Sep 17 00:00:00 2001 From: Jacob Henner Date: Wed, 9 Dec 2020 14:22:40 -0500 Subject: [PATCH] feat: add MINIMAL_ACCESS constant A "minimal access" access level was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/220203) in GitLab 13.5. --- gitlab/const.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gitlab/const.py b/gitlab/const.py index 0d2f421e8..bdd3d7387 100644 --- a/gitlab/const.py +++ b/gitlab/const.py @@ -16,6 +16,7 @@ # along with this program. If not, see . NO_ACCESS = 0 +MINIMAL_ACCESS = 5 GUEST_ACCESS = 10 REPORTER_ACCESS = 20 DEVELOPER_ACCESS = 30