Allow CCPO to view workspaces

This commit is contained in:
richard-dds
2018-09-12 11:13:06 -04:00
parent 59761800df
commit e997c5cedd
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)