[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Bambda to filter authorization values not equal to jwt bearer #61

Prev Previous commit
Next Next commit
fix: set configinscope var to true
  • Loading branch information
GangGreenTemperTatum committed Feb 29, 2024
commit 2e29a16ff3328f69e54973a470aea352a9f397a8
2 changes: 1 addition & 1 deletion Proxy/HTTP/FilterAuthenticatedNonBearerTokens.bambda
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**/

var configNoFilter = true;
GangGreenTemperTatum marked this conversation as resolved.
Show resolved Hide resolved
var configInScopeOnly = false; // If set to false, won't show out-of-scope items
var configInScopeOnly = true; // If set to true, won't show out-of-scope items
var sessionCookieName = ""; // If given, will look for a cookie with that name.
var sessionCookieValue = ""; // If given, will check if cookie with sessionCookieName has this value.

Expand Down