| Index: appengine/gaemiddleware/routes.go
|
| diff --git a/appengine/gaemiddleware/routes.go b/appengine/gaemiddleware/routes.go
|
| index d4237087795b608cc125a91c8566fc3f7dbb9802..fca73ed5b506f216ceced6398c77f940c9299978 100644
|
| --- a/appengine/gaemiddleware/routes.go
|
| +++ b/appengine/gaemiddleware/routes.go
|
| @@ -10,6 +10,7 @@ import (
|
|
|
| gaeauth "github.com/luci/luci-go/appengine/gaeauth/server"
|
| "github.com/luci/luci-go/appengine/tsmon"
|
| + "github.com/luci/luci-go/luci_config/appengine/gaeconfig"
|
| )
|
|
|
| // InstallHandlers installs HTTP handlers for various default routes.
|
| @@ -28,4 +29,5 @@ func InstallHandlers(r *router.Router, base router.MiddlewareChain) {
|
| gaeauth.InstallHandlers(r, base)
|
| tsmon.InstallHandlers(r, base)
|
| admin.InstallHandlers(r, base, &gaeauth.UsersAPIAuthMethod{})
|
| + gaeconfig.InstallCacheCronHandler(r, base.Extend(RequireCron))
|
| }
|
|
|