summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Wulfe <benwu@google.com>2015-01-13 00:05:19 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-01-13 00:05:19 +0000
commit590ec36d404a9efaf53c48e2159b90683b44a911 (patch)
treea91186347fea553ca01af6277dea4010840d34be
parent88cd5d9140e9136ec76c6adc8405ad18447e16b0 (diff)
parent4a1737a08f3af99b5bcde50f9adbc292c40756b5 (diff)
downloadlogin-590ec36d404a9efaf53c48e2159b90683b44a911.tar.gz
This adds a required scope so that Android Studio can query warehouse for the proper git remote url to use. automerge: 94135a6
automerge: 4a1737a * commit '4a1737a08f3af99b5bcde50f9adbc292c40756b5': 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);
}