(lean) add pull system

This commit is contained in:
Julien Calixte
2023-07-23 21:08:46 +02:00
parent 48733ab131
commit eaec93c071
6 changed files with 71 additions and 20 deletions

View File

@@ -19,6 +19,7 @@ const resetMeta = (): State['meta'] => ({
totalDays: 0,
strategy: {
push: 0,
pull: 0,
'turn-off': 0
}
})
@@ -41,6 +42,7 @@ export const useFeatureStore = defineStore('feature', {
this.features = nextDay({
backlog: this.backlog,
features: this.features,
steps: this.steps,
initialStep: this.steps[0].stepIndex,
strategy
})