From 49eb3ca79172905bf49bab1486ecb91c593ea1d7 Mon Sep 17 00:00:00 2001 From: Jacob Henner Date: Wed, 9 Dec 2020 14:22:40 -0500 Subject: 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(+) (limited to 'gitlab/const.py') diff --git a/gitlab/const.py b/gitlab/const.py index 0d2f421..bdd3d73 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 -- cgit v1.2.1