Skip to content

Commit

Permalink
agreements: allow setting empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Dec 23, 2023
1 parent 3b7f76f commit c6ced94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atciss/app/controllers/agreements.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ async def sectorstatus_get(
)
async def sectorstatus_post(
fir: str,
text: Annotated[str, Body()],
user: Annotated[User, Depends(get_controller)],
text: Annotated[str, Body()] = "",
) -> Agreements:
"""Set status for a sector."""

Expand Down

0 comments on commit c6ced94

Please sign in to comment.