@greenmoon said in Which are your favorite nodeBB plugins?:
is it possible to restrict "canned-responses" to moderators and admins only?
Very late, but I use this JS in my custom header to limit canned responses to admins only
// Hide canned responses unless you are an admin
$(window).on('action:composer.loaded', function() {
if (!app.user.isAdmin) {
$('.composer [data-format="canned-responses"]').hide();
}
});