We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2231c55 commit 3ddae28Copy full SHA for 3ddae28
core/src/main/java/com/github/api/v2/services/OAuthService.java
@@ -34,9 +34,15 @@ public enum Scope implements ValueEnum {
34
35
/** The USER. */
36
USER("user"),
37
+
38
+ /** The PUBLIC_REPO. */
39
+ PUBLIC_REPO("public_repo"),
40
- /** The REPOSITORY. */
- REPOSITORY("repo");
41
+ /** The REPOSITORY. */
42
+ REPOSITORY("repo"),
43
44
+ /** The GIST. */
45
+ GIST("gist");
46
47
/** The Constant stringToEnum. */
48
private static final Map<String, Scope> stringToEnum = new HashMap<String, Scope>();
0 commit comments