Skip to content

Commit

Permalink
Merge pull request #2441 from AFaust/bugfix/nodesmetadata-childassoc-…
Browse files Browse the repository at this point in the history
…param-handling

Map includeChildAssociations request parameter
  • Loading branch information
tpage-alfresco authored Feb 15, 2024
2 parents 03744ff + 3b574c5 commit 89b5fa9
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ else if(fromNodeId != null && toNodeId != null)
{
filter.setIncludeChildIds(o.getBoolean("includeChildIds"));
}
if(o.has("includeChildAssociations"))
{
filter.setIncludeChildAssociations(o.getBoolean("includeChildAssociations"));
}
if(o.has("includeTxnId"))
{
filter.setIncludeTxnId(o.getBoolean("includeTxnId"));
Expand Down

0 comments on commit 89b5fa9

Please sign in to comment.