Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2674)

Unified Diff: appengine/isolate/handlers_frontend.py

Issue 2989373002: Modify isolate proto to have UI key (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/isolate/handlers_endpoints_v1.py ('k') | appengine/isolate/proto/config.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/isolate/handlers_frontend.py
diff --git a/appengine/isolate/handlers_frontend.py b/appengine/isolate/handlers_frontend.py
index e95991bcf7701b36adbc5b2e1360addfe2dade31..9dbd39eae4a9cfd7832e2e482c2a4b9ebcf52bf4 100644
--- a/appengine/isolate/handlers_frontend.py
+++ b/appengine/isolate/handlers_frontend.py
@@ -394,7 +394,9 @@ class UIHandler(auth.AuthenticatingHandler):
"""
@auth.public
def get(self):
- params = {}
+ params = {
+ 'client_id': config.settings().ui_client_id,
+ }
# Can cache for 1 week, because the only thing that would change in this
# template is the oauth client id, which changes very infrequently.
self.response.cache_control.no_cache = None
« no previous file with comments | « appengine/isolate/handlers_endpoints_v1.py ('k') | appengine/isolate/proto/config.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698