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

Unified Diff: appengine/config_service/handlers.py

Issue 2983103002: config_service: release the UI to the front page (Closed)
Patch Set: Created 3 years, 5 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
Index: appengine/config_service/handlers.py
diff --git a/appengine/config_service/handlers.py b/appengine/config_service/handlers.py
index c7dc8c4fb900bb10a38aa43b783c9a1d564e589a..7e704f203071d932910b91eff28aa2a685381a9c 100644
--- a/appengine/config_service/handlers.py
+++ b/appengine/config_service/handlers.py
@@ -25,12 +25,6 @@ class CronGitilesImport(webapp2.RequestHandler):
class MainPageHandler(webapp2.RequestHandler):
- """Redirects to API Explorer."""
-
- def get(self):
- self.redirect('_ah/api/explorer')
-
-class UIHandler(webapp2.RequestHandler):
""" Serves the UI with the proper client ID. """
def get(self):
@@ -66,7 +60,6 @@ class SchemasHandler(webapp2.RequestHandler):
def get_frontend_routes(): # pragma: no cover
return [
webapp2.Route(r'/', MainPageHandler),
- webapp2.Route(r'/newui', UIHandler),
webapp2.Route(r'/schemas/<name:.+>', SchemasHandler),
webapp2.Route(r'/_ah/bounce', notifications.BounceHandler),
]

Powered by Google App Engine
This is Rietveld 408576698