Skip to content

Commit

Permalink
adding groups to projects #673
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Letter committed Jan 20, 2017
1 parent 2627c65 commit 0cce666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/slycat/web/server/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def post_projects():
database = slycat.web.server.database.couchdb.connect()
pid, rev = database.save({
"type": "project",
"acl": {"administrators": [{"user": cherrypy.request.login}], "readers": [], "writers": []},
"acl": {"administrators": [{"user": cherrypy.request.login}], "readers": [], "writers": [], "groups": []},
"created": datetime.datetime.utcnow().isoformat(),
"creator": cherrypy.request.login,
"description": cherrypy.request.json.get("description", ""),
Expand Down

0 comments on commit 0cce666

Please sign in to comment.