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

Unified Diff: scheduler/appengine/ui/index.go

Issue 2986033003: [scheduler]: ACLs phase 1 - per Job ACL specification and enforcement. (Closed)
Patch Set: [WIP] ACLs into engine public API. Created 3 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
Index: scheduler/appengine/ui/index.go
diff --git a/scheduler/appengine/ui/index.go b/scheduler/appengine/ui/index.go
index b288fc35799236ff092ae558fee12decdee15c34..86111a0f28f0de04eea9c3e826807b78f8009c20 100644
--- a/scheduler/appengine/ui/index.go
+++ b/scheduler/appengine/ui/index.go
@@ -20,7 +20,7 @@ import (
)
func indexPage(c *router.Context) {
- jobs, err := config(c.Context).Engine.GetAllJobs(c.Context)
+ jobs, err := config(c.Context).Engine.GetAllJobsRA(c.Context)
if err != nil {
panic(err)
}

Powered by Google App Engine
This is Rietveld 408576698