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

Unified Diff: appengine/cmd/milo/frontend/milo.go

Issue 2196453002: Milo: Console view prototype (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: Reviews Created 4 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/cmd/milo/frontend/app.yaml ('k') | appengine/cmd/milo/frontend/static/buildbot/css/default.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/cmd/milo/frontend/milo.go
diff --git a/appengine/cmd/milo/frontend/milo.go b/appengine/cmd/milo/frontend/milo.go
index cc30293a4bc5ea13a3482bdb69af562f50f0414b..1725bc4b73437a7f5c331f0096b44a2d85308cf5 100644
--- a/appengine/cmd/milo/frontend/milo.go
+++ b/appengine/cmd/milo/frontend/milo.go
@@ -9,6 +9,7 @@ import (
"github.com/luci/luci-go/appengine/cmd/milo/buildbot"
"github.com/luci/luci-go/appengine/cmd/milo/buildbucket"
+ "github.com/luci/luci-go/appengine/cmd/milo/console"
"github.com/luci/luci-go/appengine/cmd/milo/logdog"
"github.com/luci/luci-go/appengine/cmd/milo/settings"
"github.com/luci/luci-go/appengine/cmd/milo/swarming"
@@ -24,6 +25,9 @@ func init() {
gaemiddleware.InstallHandlers(r, basemw)
r.GET("/", basemw, settings.Wrap(frontpage{}))
+ // Console
+ r.GET("/console/:name", basemw, settings.Wrap(console.Console{}))
+
// Swarming
r.GET("/swarming/task/:id/steps/*logname", basemw, settings.Wrap(swarming.Log{}))
r.GET("/swarming/task/:id", basemw, settings.Wrap(swarming.Build{}))
« no previous file with comments | « appengine/cmd/milo/frontend/app.yaml ('k') | appengine/cmd/milo/frontend/static/buildbot/css/default.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698