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

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

Issue 2986033003: [scheduler]: ACLs phase 1 - per Job ACL specification and enforcement. (Closed)
Patch Set: Review. 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
« no previous file with comments | « scheduler/appengine/ui/job.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scheduler/appengine/ui/project.go
diff --git a/scheduler/appengine/ui/project.go b/scheduler/appengine/ui/project.go
index 8fd23b05d0f18ca587274ba8aaa92442d0f094db..0cab92f2ebe03569a83f38fe0d15de108b4e1192 100644
--- a/scheduler/appengine/ui/project.go
+++ b/scheduler/appengine/ui/project.go
@@ -21,7 +21,7 @@ import (
func projectPage(c *router.Context) {
projectID := c.Params.ByName("ProjectID")
- jobs, err := config(c.Context).Engine.GetProjectJobs(c.Context, projectID)
+ jobs, err := config(c.Context).Engine.GetVisibleProjectJobs(c.Context, projectID)
if err != nil {
panic(err)
}
« no previous file with comments | « scheduler/appengine/ui/job.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698