Recent category threads
Hi all
I can see how to return all recent threads:
<#assign threads = rest("/threads/recent").threads />
and I can see how to return recent threads for the current board :
<#assign threads = rest("/boards/id/" + coreNode.id + "/threads/recent").threads />
but I cannot see how to return recent threads for the current category (group of boards). One might think:
<#assign threads = rest("/categories/id/" + coreNode.id + "/threads/recent").threads />
but that method doesn't exist. What am I missing?
Thanks
Geoff
Just as a quick follow up for other users. It turned out what I really needed was recent topics.
/topics/recent
/categories/id/" + coreNode.id + "/topics/recent
/boards/id/" + coreNode.id + "/topics/recent
For each message in the topic list I was able to get to the thread info I needed.
Hope this helps someone :smileyhappy:
Geoff