+1 for the feature

Best posts made by niro
Latest posts made by niro
-
RE: Other webapps derived from nodebb, non-forum?
@yariplus
Yes, it's true, almost everything in the forum has an API.
Then websockets? I don't see a websocket stream interface which client/app can get notifies, mentions. -
RE: Other webapps derived from nodebb, non-forum?
A API-first system will be more interesting in mobile phone age.
-
RE: Other webapps derived from nodebb, non-forum?
Lack of a complete API support. Such as live stream.
I don't think Nodebb is a good choice to develop web/phone apps. -
customized category slug
Category slug consist cid and slugify category name.
var slug = cid + '/' + utils.slugify(data.name);
Is it possiable give a custom setting like this?
var extSlug = custSlug || utils.slugify(data.name); var slug = cid + '/' + extSlug;
While custSlug set at category setting page.
-
RE: [nodebb-plugin-custom-homepage] Basic CMS plugin - custom homepage
@psychobunny said:
When I enter "/", custom homepage appeared , then "/forum/, it work ok, then to topics list page, then click browser's "back" button , it can't back to "/forum".
I don't know how to make it ok, need help
Don't think I follow 100%, are you building your own plugin and using this one as a base?
Yes, I'm building my own plugin, but I only adopt the idea of the route rules. I had try to just install the custom homepage plugin to see if it is ok, but seems also the problem. I did need a hompage before enter forum home. Some good idea please?
-
RE: [nodebb-plugin-custom-homepage] Basic CMS plugin - custom homepage
Dear master
I follow the idea of the plugin's route:
app.get('/', middleware.buildHeader, renderHomepage); app.get('/api/home', renderHomepage); app.get('/templates/home.tpl', renderHomepage); app.get('/forum', middleware.buildHeader, controllers.home); app.get('/api/forum', controllers.home);
When I enter "/", custom homepage appeared , then "/forum/, it work ok, then to topics list page, then click browser's "back" button , it can't back to "/forum".
I don't know how to make it ok, need help