From 3593d7d2b7922b8e04c6c7379a55a9b3cdb37d84 Mon Sep 17 00:00:00 2001 From: Wolfgang Welz <welzwo@gmail.com> Date: Wed, 31 Jul 2019 01:25:49 +0200 Subject: [PATCH] Disable spammer by default --- plugins/webapi-spammer/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/webapi-spammer/plugin.go b/plugins/webapi-spammer/plugin.go index 71ec701d..e40b962d 100644 --- a/plugins/webapi-spammer/plugin.go +++ b/plugins/webapi-spammer/plugin.go @@ -10,7 +10,7 @@ import ( "github.com/labstack/echo" ) -var PLUGIN = node.NewPlugin("Spammer", node.Enabled, configure) +var PLUGIN = node.NewPlugin("Spammer", node.Disabled, configure) func configure(plugin *node.Plugin) { webapi.AddEndpoint("spammer", WebApiHandler) -- GitLab