Skip to content

Commit

Permalink
added logs and new field
Browse files Browse the repository at this point in the history
  • Loading branch information
saravanpa-aot committed Sep 27, 2023
1 parent cf27993 commit e3a9213
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion met-api/src/met_api/services/project_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def update_project_info(project_id: str, eng_id: str) -> EngagementModel:
engagement, engagement_metadata = ProjectService._get_engagement_and_metadata(eng_id)

epic_comment_period_payload = ProjectService._construct_epic_payload(engagement, project_id)
logger.debug('epic_comment_period_payload: %s', epic_comment_period_payload)

eao_service_account_token = ProjectService._get_eao_service_account_token()

Expand Down Expand Up @@ -75,7 +76,8 @@ def _construct_epic_payload(engagement, project_id):
'milestone': current_app.config.get('EPIC_MILESTONE'),
'openHouse': '',
'relatedDocuments': '',
'project': project_id
'project': project_id,
'isPublished': 'true'
}
return epic_comment_period_payload

Expand Down

0 comments on commit e3a9213

Please sign in to comment.