feat(F-048): completed feature

This commit is contained in:
chattie
2026-08-19 07:18:17 +02:00
parent 835ab66eda
commit ae922c09d7
3 changed files with 30 additions and 21 deletions

View File

@@ -80,8 +80,16 @@ def close_feature(feature_id):
if feature.get('id') == feature_id:
feature['status'] = 'done'
feature['completed_at'] = now_iso()
feature_gates = feature.setdefault('gates', {})
feature_gates.update({
'reviewer': True,
'security': True,
'qa': True,
'close': True,
})
feature_gates.pop('review', None)
feature_found = True
print(f"\n[OK] Updated backlog: {feature_id} -> done")
print(f"\n[OK] Updated backlog: {feature_id} -> done with approved gates")
break
if not feature_found: