feat: add chore, kindness, and penalty management components
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 2m34s
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 2m34s
- Implemented ChoreAssignView for assigning chores to children. - Created ChoreConfirmDialog for confirming chore completion. - Developed KindnessAssignView for assigning kindness acts. - Added PenaltyAssignView for assigning penalties. - Introduced ChoreEditView and ChoreView for editing and viewing chores. - Created KindnessEditView and KindnessView for managing kindness acts. - Developed PenaltyEditView and PenaltyView for managing penalties. - Added TaskSubNav for navigation between chores, kindness acts, and penalties.
This commit is contained in:
@@ -212,7 +212,7 @@ class TestDeletionProcess:
|
||||
id='user_task',
|
||||
name='User Task',
|
||||
points=10,
|
||||
is_good=True,
|
||||
type='chore',
|
||||
user_id=user_id
|
||||
)
|
||||
task_db.insert(user_task.to_dict())
|
||||
@@ -222,7 +222,7 @@ class TestDeletionProcess:
|
||||
id='system_task',
|
||||
name='System Task',
|
||||
points=20,
|
||||
is_good=True,
|
||||
type='chore',
|
||||
user_id=None
|
||||
)
|
||||
task_db.insert(system_task.to_dict())
|
||||
@@ -805,7 +805,7 @@ class TestIntegration:
|
||||
user_id=user_id,
|
||||
name='User Task',
|
||||
points=10,
|
||||
is_good=True
|
||||
type='chore'
|
||||
)
|
||||
task_db.insert(task.to_dict())
|
||||
|
||||
|
||||
Reference in New Issue
Block a user