diff options
| author | Appu Goundan <appu@google.com> | 2014-08-14 14:06:28 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-08-12 20:07:20 +0000 |
| commit | 2bc3e4fc1fced5745f66c82144abd0e88253e774 (patch) | |
| tree | 38a59dc7df180ae0501d840161ea33bb9dfd62ea /login | |
| parent | 78fa6072fd850274896fc5e8c41493b543910420 (diff) | |
| parent | 21532aa8314a2b5bd318e9af17b380841c8fa81f (diff) | |
| download | platform_tools_studio_cloud-2bc3e4fc1fced5745f66c82144abd0e88253e774.tar.gz platform_tools_studio_cloud-2bc3e4fc1fced5745f66c82144abd0e88253e774.tar.bz2 platform_tools_studio_cloud-2bc3e4fc1fced5745f66c82144abd0e88253e774.zip | |
Merge "Creates a simple deploy dialog using appcfg." into idea133
Diffstat (limited to 'login')
| -rw-r--r-- | login/src/com/google/gct/login/OAuthScopeRegistry.java | 1 |
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); } |
