DDD Refactor
Closed this issue · 1 comments
danielmackay commented
The new domain is based around heroes and will provide the following functionality:
Heros
- Get Heroes -
GET /heroes
- Update a Hero -
PUT /heroes
- Create a Hero -
POST /heroes
Teams
- Create a team -
POST /teams
- Get teams -
GET /teams
- Add a hero to a team -
POST /teams/ID/hero
- Execute a mission for a team -
POST /teams/ID/execute-mission
- Complete a mission for a team -
POST /teams/ID/complete-mission
danielmackay commented
All PBI's done!