We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 641ea14 commit a789d7aCopy full SHA for a789d7a
1 file changed
lua/ipax.lua
@@ -279,6 +279,18 @@ function _M.check_multivalued_user_claim(claim_values, check_item)
279
return false
280
end
281
282
+local function split(input, separator)
283
+ ngx.log(ngx.DEBUG, "Starting")
284
+ if separator == nil then
285
+ separator = "%s"
286
+ end
287
+ local t={}
288
+ for str in string.gmatch(input, "([^" .. separator .. "]+)") do
289
+ table.insert(t, str)
290
291
+ return t
292
+end
293
+
294
function _M.get_ldap_object_names_from_dns(object_dns)
295
ngx.log(ngx.DEBUG, "Starting")
296
local object_names={}
0 commit comments