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

Unified Diff: appengine/findit/main.py

Issue 2043973002: [Findit] Fracas crash triage dashboard (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 6 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/findit/main.py
diff --git a/appengine/findit/main.py b/appengine/findit/main.py
index 25ac9eefbc5fff1fed545deac37c02fd319c833e..aa641bef4ee1be5a9521c426450ef0644e13c507 100644
--- a/appengine/findit/main.py
+++ b/appengine/findit/main.py
@@ -25,7 +25,7 @@ from handlers import verify_analysis
from handlers import version
from handlers.crash import crash_config
from handlers.crash import fracas_crash
-
+from handlers.crash import fracas_dashboard
# Default module.
default_web_pages_handler_mappings = [
@@ -88,6 +88,7 @@ waterfall_backend_web_application = webapp2.WSGIApplication(
# "crash-frontend" module.
crash_frontend_web_pages_handler_mappings = [
('/crash/config', crash_config.CrashConfig),
+ ('/crash/fracas-dashboard', fracas_dashboard.FracasDashBoard),
('/_ah/push-handlers/crash/fracas', fracas_crash.FracasCrash),
]
crash_frontend_web_application = webapp2.WSGIApplication(

Powered by Google App Engine
This is Rietveld 408576698