summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Wulfe <benwu@google.com>2015-01-12 23:47:59 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-01-12 23:47:59 +0000
commit4a1737a08f3af99b5bcde50f9adbc292c40756b5 (patch)
treea91186347fea553ca01af6277dea4010840d34be
parent16d303094f37b830b793c3ae523030b95a50bd68 (diff)
parent94135a607b751a02cae2d678c305786df978959f (diff)
downloadlogin-4a1737a08f3af99b5bcde50f9adbc292c40756b5.tar.gz
This adds a required scope so that Android Studio can query warehouse for the proper git remote url to use.
automerge: 94135a6 * commit '94135a607b751a02cae2d678c305786df978959f': This adds a required scope so that Android Studio can query warehouse for the proper git remote url to use.
-rw-r--r--src/com/google/gct/login/OAuthScopeRegistry.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/google/gct/login/OAuthScopeRegistry.java b/src/com/google/gct/login/OAuthScopeRegistry.java
index 31f96c7..82fee39 100644
--- a/src/com/google/gct/login/OAuthScopeRegistry.java
+++ b/src/com/google/gct/login/OAuthScopeRegistry.java
@@ -32,6 +32,7 @@ class OAuthScopeRegistry {
scopes.add("https://www.googleapis.com/auth/userinfo#email");
scopes.add("https://www.googleapis.com/auth/appengine.admin");
scopes.add("https://www.googleapis.com/auth/cloud-platform");
+ scopes.add("https://www.googleapis.com/auth/projecthosting");
SCOPES = Collections.unmodifiableSortedSet(scopes);
}