Skip to content

Commit

Permalink
OTWO-7320 Fix positions API (#1808)
Browse files Browse the repository at this point in the history
  • Loading branch information
Priya5 authored Jan 16, 2025
1 parent b5046c9 commit 8fa6f09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/views/positions/index.xml.builder
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ xml.response do
xml.organization position.organization
xml.html_url show_position_url(position)
xml.created_at xml_date_to_time(position.created_at)
xml.created_at xml_date_to_time(position.start_date)
xml.created_at xml_date_to_time(position.stop_date)
xml.started_at xml_date_to_time(position.start_date)
xml.ended_at xml_date_to_time(position.stop_date)
xml.sparkline_url commits_compound_spark_account_position_url(format: 'png', account_id: position.account_id,
id: position.id)
xml.commits position.name_fact.commits if position.name_fact
Expand Down
1 change: 0 additions & 1 deletion app/views/projects/_project.xml.builder
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ xml.project do
xml.description project.description
xml.homepage_url project.url
xml.download_url project.download_url
xml.url_name project.vanity_url
xml.vanity_url project.vanity_url
if project.logo_id
xml.medium_logo_url project.logo.attachment.url(:med)
Expand Down

0 comments on commit 8fa6f09

Please sign in to comment.