From b5de071cea17f8961d4690e3220297fabf57638a Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Thu, 23 Mar 2017 10:22:26 +0100 Subject: [PATCH] fix(ldap-plugin): adds the 'no-consumer' flag to the ldap plugin schema (#2237) --- kong/plugins/ldap-auth/schema.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/kong/plugins/ldap-auth/schema.lua b/kong/plugins/ldap-auth/schema.lua index 28406dcd55ea..ad30be0182c9 100644 --- a/kong/plugins/ldap-auth/schema.lua +++ b/kong/plugins/ldap-auth/schema.lua @@ -9,6 +9,7 @@ local function check_user(anonymous) end return { + no_consumer = true, fields = { ldap_host = {required = true, type = "string"}, ldap_port = {required = true, type = "number"},