Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package = "kong-oidc-auth"
version = "0.3-0"
version = "0.3.1-0"
source = {
url = "git+https://github.com/Optum/kong-oidc-auth.git"
}
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions src/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ local access = require "kong.plugins.kong-oidc-auth.access"

local KongOidcAuth = {}

KongOidcAuth.PRIORITY = 1000
KongOidcAuth.VERSION = "0.3.1-0"

function KongOidcAuth:access(conf)
access.run(conf)
end
Expand Down
2 changes: 1 addition & 1 deletion src/schema.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ return {
{ scope = { type = "string" }, },
{ salt = { type = "string", required = true, default = "b3253141ce67204b"}, },
{ pf_idp_adapter_id = { type = "string" }, },
{ user_keys = { type = "array", default = {"username", "email"}}, },
{ user_keys = { type = "array", elements = { type = "string" }, default = {"username", "email"}}, },
{ cookie_domain = { type = "string", default = ".company.com"}, },
{ user_info_periodic_check = { type = "number", required = true, default = 60}, },
{ hosted_domain = { type = "string" }, },
Expand Down