-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* paste story text * paste story text * sprint planning * added filtering for projectId * refactor to support bff * more work on plan view bff code * added points metric related fields * invertable icon * collapse icon in place * added sprint backlog items resource * UI for adding sprint backlog items * doc updates * architecture notes added * fix script issue * basic sprint backlog insert in place * changed name of sprintbacklog * added endpoint to move item into sprint * fix compilation issues * doc updates * removed console.logs * fixed "last sprint item move to sprint" bug * fix add pbi issue- projectid was null * partial implementation of sprint item delete * implemented "move" handler * updated action naming * add:sprint action with data - no UI yet * added POST sprint handler * remove unnecessary sprint.displayindex field * fix storybook issues * add sprint panel (not working yet) * fix for sprintpanel issue * refactor to creatre sprint card * implemented endpoint to delete sprint * updated to @atoll/shared@0.20.0 * update package-lock Co-authored-by: Kevin <kevinbe71@gmail.com>
- Loading branch information
1 parent
08824a7
commit bf7b0ab
Showing
46 changed files
with
1,564 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Make sure that you've read README.md and CODE_STANDARDS.md before contributing new code. These documents are living documents so | ||
make sure you're familiar with the most recent changes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Overview | ||
======== | ||
|
||
This document explains the API framework that's implemented in Atoll. | ||
|
||
Files | ||
----- | ||
|
||
There are a few important files that encompass the API "framework": | ||
1. `apiMiddleware.ts` | ||
2. `apiOrchestrationMiddleware.ts` | ||
3. `apiBatchMiddleware.ts` | ||
|
||
Capabilities | ||
------------ | ||
|
||
1. Support for stages of the API calling lifecycle: | ||
- `request` | ||
- `success` | ||
- `failure` | ||
2. Queuing a batch of API calls that need to execute in sequence | ||
3. "Passthrough" functionality to ensure that meta information | ||
is passed on from one action to another. | ||
|
||
Stages | ||
====== | ||
|
||
(todo) | ||
|
||
Batch | ||
===== | ||
|
||
(todo) | ||
|
||
Passthrough | ||
=========== | ||
|
||
(todo) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.