summaryrefslogtreecommitdiff
path: root/gitlab/const.py
diff options
context:
space:
mode:
authorJacob Henner <code@ventricle.us>2020-12-09 14:22:40 -0500
committerJacob Henner <code@ventricle.us>2020-12-15 12:58:29 -0500
commit49eb3ca79172905bf49bab1486ecb91c593ea1d7 (patch)
treef14dd2f40564f2f1f6f26d4c9f8f7af0f822925b /gitlab/const.py
parent265dbbdd37af88395574564aeb3fd0350288a18c (diff)
downloadgitlab-49eb3ca79172905bf49bab1486ecb91c593ea1d7.tar.gz
feat: add MINIMAL_ACCESS constant
A "minimal access" access level was [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/220203) in GitLab 13.5.
Diffstat (limited to 'gitlab/const.py')
-rw-r--r--gitlab/const.py1
1 files changed, 1 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
NO_ACCESS = 0
+MINIMAL_ACCESS = 5
GUEST_ACCESS = 10
REPORTER_ACCESS = 20
DEVELOPER_ACCESS = 30