Claudius
13 years agoBoss
Looking for a thread equivalent to forums.widget.message-list-panel
Currently working on a custom component to show unanswered threads older than x days. The discussion on "Threads with no replies" has proven really helpful by supplying a hint on the builtin component to output a list of message:
<#assign rest_query = "/boards/id/" + pid + "/search/messages?openresponse=true&sort_by=-topicPostDate&page_size=" + results_list_size /> <@component id="forums.widget.message-list-panel" messages="rest_v1:"+rest_query style="wide" numMessages="conv:"+results_list_size />
Is there an equivalent builtin widget to do the same for a list of threads, e.g. like this (non-working code):
<#assign rest_query = "/boards/id/" + pid + "/threads/recent?openresponse=true&sort_by=-topicPostDate&page_size=" + results_list_size /> <@component id="forums.widget.thread-list-panel" threads="rest_v1:"+rest_query style="wide" numThreads="conv:"+results_list_size />