17 lines
265 B
Lua
17 lines
265 B
Lua
local access = require "kong.plugins.ldap-auth.access"
|
|
local kong_meta = require "kong.meta"
|
|
|
|
|
|
local LdapAuthHandler = {
|
|
VERSION = kong_meta.version,
|
|
PRIORITY = 1200,
|
|
}
|
|
|
|
|
|
function LdapAuthHandler:access(conf)
|
|
access.execute(conf)
|
|
end
|
|
|
|
|
|
return LdapAuthHandler
|