Unverified Commit 94cc338b authored by Clay Weidinger's avatar Clay Weidinger Committed by GitHub
Browse files

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
parent 1287b236
......@@ -10,7 +10,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
public enum AccessLevel {
INVALID(-1), NONE(0), GUEST(10), REPORTER(20), DEVELOPER(30), @Deprecated MASTER(40), MAINTAINER(40), OWNER(50), ADMIN(60);
INVALID(-1), NONE(0), MINIMAL_ACCESS(5), GUEST(10), REPORTER(20), DEVELOPER(30), @Deprecated MASTER(40), MAINTAINER(40), OWNER(50), ADMIN(60);
public final Integer value;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment