From afd2f2566eb925fd32fcdb074850f62c1bc4d9b6 Mon Sep 17 00:00:00 2001 From: MickaelK Date: Mon, 9 Dec 2024 09:03:05 +1100 Subject: [PATCH] fix (jenkins): broken build after refactoring --- server/plugin/index.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/plugin/index.go b/server/plugin/index.go index 9e62369d..75076778 100644 --- a/server/plugin/index.go +++ b/server/plugin/index.go @@ -2,13 +2,12 @@ package plugin import ( . "github.com/mickael-kerjean/filestash/server/common" - _ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_admin" _ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_htpasswd" _ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_ldap" + _ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_local" _ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_openid" _ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_passthrough" _ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_saml" - _ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_simple" _ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_artifactory" _ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_backblaze" _ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_dav"