mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-17 21:12:50 +01:00
14 lines
214 B
JavaScript
14 lines
214 B
JavaScript
'use strict';
|
|
|
|
define('forum/recent', ['topicList'], function (topicList) {
|
|
const Recent = {};
|
|
|
|
Recent.init = function () {
|
|
app.enterRoom('recent_topics');
|
|
|
|
topicList.init('recent');
|
|
};
|
|
|
|
return Recent;
|
|
});
|