nasaonacid / abstractAardvark

0 stars 0 forks source link

Creation of Rest API #15

Closed nasaonacid closed 9 years ago

nasaonacid commented 9 years ago

Create a REST api which supports the following actions: Creation of a tree game(only support selected users for these) Validation of a tree structure(must take session id) Deletion of a tree structure(only allowed for specific user groups) Status of a game(game complete could be covered in validation)

nasaonacid commented 9 years ago

When verifying the tree's completeness, we can navigate through the tree structure stored for the game session. Storage of the game is currently going to be implemented as a primary key for the "level" unique id and the serialised tree structure made in python. As the json objects will contain a similar sturcture created by the user, we will be able to navigate through the structure to check for correctness.

jeremysinger commented 9 years ago

Are you validating complete trees, or partial trees (i.e. inheritance trees with blanks in them)

nasaonacid commented 9 years ago

REST api is now functional - more development is possible, but it's working at a usable level