Merge pull request #275 from dod-ccpo/fix-workspaces-query

Allow CCPO to view workspaces
This commit is contained in:
richard-dds
2018-09-12 11:37:33 -04:00
committed by GitHub
6 changed files with 46 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ def workspace():
@bp.route("/workspaces")
def workspaces():
workspaces = Workspaces.get_many(g.current_user)
workspaces = Workspaces.for_user(g.current_user)
return render_template("workspaces/index.html", page=5, workspaces=workspaces)