Sorting blogs by alphabetical order
Hi there,
I'm using a REST API call like this
/restapi/vc/boards/style/blog/nested/
in order to iterate through a list and populate a component with links for such blogs. Is there anyway I can get this list sorted out in alphabetical order? The XML response include something like
<board type="board" href="/blogs/id/blog-1">
<id type="string">net-blog-test</id>
<owner type="user" null="true"/>
<blog type="boolean">true</blog>
<interaction_style type="string">blog</interaction_style>
<user_created type="boolean">false</user_created>
<description type="string">Sample blurb</description>
<title type="string">Test Blog </title>
<short_title type="string">Net Blog</short_title>
</board>
<board type="board" href="/blogs/id/blog-2">
<id type="string">apps-blog</id>
<owner type="user" null="true"/>
<blog type="boolean">true</blog>
<interaction_style type="string">blog</interaction_style>
<user_created type="boolean">false</user_created>
<description type="string"/>
<title type="string">Another Blog</title>
<short_title type="string">Apps Blog</short_title>
</board>
and I'd like to have sorted by bold title value. Is it possible to do this adding parameters to the call, or is it something that can be done with the FreeMarker #list?
Thanks,
Luis