Skip to content

Commit

Permalink
adding description when update project to flows instance
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Barbosa committed Dec 5, 2023
1 parent cbab186 commit c64c0c4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions connect/api/v1/internal/flows/flows_rest_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ def update_project(self, project_uuid: str, **kwargs: dict):
from connect.common.models import Project
project = Project.objects.get(uuid=project_uuid)
kwargs.update({"timezone": str(project.timezone)})
kwargs.update({"description": project.description})
try:
response = requests.patch(
url=f'{self.base_url}/api/v2/internals/orgs/{project_uuid}/',
Expand Down

0 comments on commit c64c0c4

Please sign in to comment.