Skip to content

Commit

Permalink
Merge branch 'main' into xslt/remove-minimist
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfhandl committed Apr 24, 2024
2 parents 97ed603 + ef9e23e commit 2a0ca61
Show file tree
Hide file tree
Showing 19 changed files with 1,089 additions and 309 deletions.
12 changes: 11 additions & 1 deletion tools/V4-CSDL-to-OpenAPI.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -3627,7 +3627,17 @@
</xsl:otherwise>
</xsl:choose>

<xsl:call-template name="responses" />
<xsl:choose>
<xsl:when test="$odata-version='2.0' or $odata-version='3.0'">
<xsl:call-template name="responses" />
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="responses">
<xsl:with-param name="type" select="$qualifiedType" />
<xsl:with-param name="description" select="'Updated entity'" />
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>

<xsl:text>}</xsl:text>
</xsl:if>
Expand Down
Loading

0 comments on commit 2a0ca61

Please sign in to comment.