summaryrefslogtreecommitdiffstats
path: root/login
diff options
context:
space:
mode:
authorBenjamin Wulfe <benwu@google.com>2014-08-14 19:17:50 +0000
committerBenjamin Wulfe <benwu@google.com>2014-08-14 19:17:50 +0000
commita6fc4da6327ef1167a68c66fd94803d47b719f36 (patch)
treed4bae115d38cfa68fcf2939384f9f43b8056da66 /login
parentc4e5891127fd79847100dd1ea890a37655f937b5 (diff)
downloadplatform_tools_studio_cloud-a6fc4da6327ef1167a68c66fd94803d47b719f36.tar.gz
platform_tools_studio_cloud-a6fc4da6327ef1167a68c66fd94803d47b719f36.tar.bz2
platform_tools_studio_cloud-a6fc4da6327ef1167a68c66fd94803d47b719f36.zip
Revert "Revert "Creates a simple deploy dialog using appcfg.""
Dependent changes for tools/idea now in master. This reverts commit c4e5891127fd79847100dd1ea890a37655f937b5. Change-Id: I7ac242ea1584dd859316a90c33994d5d78911f73
Diffstat (limited to 'login')
-rw-r--r--login/src/com/google/gct/login/OAuthScopeRegistry.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/login/src/com/google/gct/login/OAuthScopeRegistry.java b/login/src/com/google/gct/login/OAuthScopeRegistry.java
index ca2fe2e..47b9686 100644
--- a/login/src/com/google/gct/login/OAuthScopeRegistry.java
+++ b/login/src/com/google/gct/login/OAuthScopeRegistry.java
@@ -32,6 +32,7 @@ class OAuthScopeRegistry {
static {
SortedSet<String> scopes = new TreeSet<String>();
scopes.add("https://www.googleapis.com/auth/userinfo#email");
+ scopes.add("https://www.googleapis.com/auth/appengine.admin");
sScopes = Collections.unmodifiableSortedSet(scopes);
}