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

Unified Diff: appengine/chromium_cq_status/main.py

Issue 2111713004: Teach CQ status app to check login status of users. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Review and tests. 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
« no previous file with comments | « appengine/chromium_cq_status/js/stats_viewer.js ('k') | appengine/chromium_cq_status/makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/chromium_cq_status/main.py
diff --git a/appengine/chromium_cq_status/main.py b/appengine/chromium_cq_status/main.py
index c13303c69a664e47331e78fbbd3c0cd57cd4237b..8a8b1d53eebc25807707e209e0bdd29f3381ecc2 100644
--- a/appengine/chromium_cq_status/main.py
+++ b/appengine/chromium_cq_status/main.py
@@ -10,11 +10,13 @@ from handlers.index import Index
from handlers.patch_status import PatchStatus, PatchStatusV2
from handlers.patch_summary import PatchSummary, PatchSummaryV2
from handlers.post import Post
+from handlers.recent import Recent
from handlers.stats_viewer import StatsViewer
from handlers.stats_data_points import StatsDataPoints
handlers = [
(r'/', Index),
+ (r'/recent', Recent),
(r'/admin/(.*)', AdminDispatch),
(r'/patchset/(.*)/(.*)', PatchStatus), # Legacy URL for old links.
(r'/patch-status/(.*)/(.*)', PatchStatus),
« no previous file with comments | « appengine/chromium_cq_status/js/stats_viewer.js ('k') | appengine/chromium_cq_status/makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698