-
Basic functionality
11/03/2015 at 05:01 • 0 commentsLooks like the most important stuff is working.
-
Databases
11/01/2015 at 20:12 • 0 commentsI'm trying to document the API here. This will change often.
GET /projects/example/active
[ {"id": "123", "priority": 0 to 3, "description": "string", "details": "a longer string", "status": "[todo,current,done]", "due": "2015-10-30T23:01:47Z", "assignee": "[userid? for future use.]"} ]
POST /projects/example/create
[ {"description": "string", "priority": 2, "details": "a longer string", "status": "[todo,current,done]", "due": "2015-10-30T23:01:47Z", "assignee": "[userid? for future use.]"} ]
(returns the database - like .../active)
POST /projects/example/123
[ {"description": "string", "priority": 2, "details": "a longer string", "status": "[todo,current,done]", "due": "2015-10-30T23:01:47Z", "assignee": "[userid? for future use.]"} ]
(returns the database - like .../active)
Everything above this line is implemented.
GET /projects
["example"]
POST /projects/example{"description": "blah"}
{"status": "[unchanged|created|success|failed]"}