UNPKG

nodebb-plugin-smoothshorts

Version:

Seamless short URLs for topic and post links in NodeBB.

22 lines (21 loc) 916 B
{ "id": "nodebb-plugin-smoothshorts", "name": "Seamless short URL plugin for NodeBB", "description": "Replaces long slug urls with short, hashed ones in NodeBB.", "url": "https://github.com/rbeer/nodebb-plugin-smoothshorts", "library": "./lib/controller.js", "scripts": ["public/scripts/"], "css": ["public/css/smoothshorts.css"], "templates": "public/templates", "languages": "public/locales", "defaultLang": "en_GB", "staticDirs": {"scripts": "public/static/scripts/", "css": "public/static/css/"}, "hooks": [ { "hook": "action:topic.save", "method": "shortenTopic" }, { "hook": "action:topic.purge", "method": "purgeTopic" }, { "hook": "action:post.save", "method": "shortenPost" }, { "hook": "action:post.purge", "method": "purgePost" }, { "hook": "filter:admin.header.build", "method": "admin.addMenuItem" }, { "hook": "static:app.load", "method": "init" } ] }