Skip to content

Commit

Permalink
Update activity and flows auto-assign base value to false.
Browse files Browse the repository at this point in the history
  • Loading branch information
LashaunnaS committed Nov 5, 2024
1 parent 6b158cc commit ad2bffe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apps/activities/domain/activity_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ActivityBase(BaseModel):
report_included_item_name: str | None = None
performance_task_type: PerformanceTaskType | None = None
is_performance_task: bool = False
auto_assign: bool | None = True
auto_assign: bool | None = False

@validator("name")
def validate_string(cls, value):
Expand Down
2 changes: 1 addition & 1 deletion src/apps/activity_flows/domain/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class FlowBase(BaseModel):
report_included_activity_name: str | None = None
report_included_item_name: str | None = None
is_hidden: bool | None = False
auto_assign: bool | None = True
auto_assign: bool | None = False

@validator("description")
def validate_description(cls, value):
Expand Down

0 comments on commit ad2bffe

Please sign in to comment.