nodebb-plugin-events

Topic Events plugin for NodeBB

BSD-2-CLAUSE License

Downloads
16
Stars
8

Topic Events plugin for NodeBB

Catches events such as topic pinned/unpinned, locked/unlocked, and moved. Adds a small notification inline within the thread, with the moderator's picture, username, brief description of the event, and timestamp.

Installation

npm install nodebb-plugin-events

Adding custom events in your own plugin

Server side:

/*
*  eventType: topic / user
*  typeID: tid or uid
*  eventName: only the most recent of this will be recorded, the previous will be deleted
*  eventData: things that you want to pass along to your template
*/
plugins.fireHook('action:event.add', eventType, typeID, eventName, timestamp, eventData);

Screenshots