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

Unified Diff: dashboard/dashboard/dispatcher.py

Issue 2706813003: Add new endpoint to get bug details as JSON. (Closed)
Patch Set: addressed review comments Created 3 years, 10 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: dashboard/dashboard/dispatcher.py
diff --git a/dashboard/dashboard/dispatcher.py b/dashboard/dashboard/dispatcher.py
index 379c78c67c8a0fb5a00999e353204d2a15674a7b..e55e210e858008a35dd701775ca735aa45bee636 100644
--- a/dashboard/dashboard/dispatcher.py
+++ b/dashboard/dashboard/dispatcher.py
@@ -16,6 +16,7 @@ from dashboard import bad_bisect
from dashboard import benchmark_health_report
from dashboard import bisect_stats
from dashboard import bisect_fyi
+from dashboard import bug_details
from dashboard import buildbucket_job_status
from dashboard import change_internal_only
from dashboard import create_health_report
@@ -71,6 +72,7 @@ _URL_MAPPING = [
benchmark_health_report.BenchmarkHealthReportHandler),
('/bisect_fyi', bisect_fyi.BisectFYIHandler),
('/bisect_stats', bisect_stats.BisectStatsHandler),
+ ('/bug_details', bug_details.BugDetailsHandler),
(r'/buildbucket_job_status/(\d+)',
buildbucket_job_status.BuildbucketJobStatusHandler),
('/change_internal_only', change_internal_only.ChangeInternalOnlyHandler),
« no previous file with comments | « dashboard/dashboard/bug_details_test.py ('k') | dashboard/dashboard/elements/benchmark-health-report-details.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698