Skip to content

Commit 94cc338

Browse files
authored
Update AccessLevel.java
On gitlab.com I got ``` org.gitlab4j.api.models.AccessLevel forValue WARNING: [5] is not a valid GitLab access level. ``` so I've added that enum here
1 parent 1287b23 commit 94cc338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/gitlab4j/api/models/AccessLevel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
public enum AccessLevel {
1212

13-
INVALID(-1), NONE(0), GUEST(10), REPORTER(20), DEVELOPER(30), @Deprecated MASTER(40), MAINTAINER(40), OWNER(50), ADMIN(60);
13+
INVALID(-1), NONE(0), MINIMAL_ACCESS(5), GUEST(10), REPORTER(20), DEVELOPER(30), @Deprecated MASTER(40), MAINTAINER(40), OWNER(50), ADMIN(60);
1414

1515
public final Integer value;
1616

0 commit comments

Comments
 (0)