diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2023-07-31 15:34:39 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-31 15:34:39 +1000 |
| commit | db6d95cae921258f994b72171f8b55dec048a9b2 (patch) | |
| tree | 221a5d1becbc60c1463a414350fcb9a704193af7 /internal/configuration/schema/const.go | |
| parent | 984a5cb3fd01c92e40f887d6e5f80fd03064ffcb (diff) | |
feat(oidc): auth policy applied per-subject (#5486)
This adds support to adjust the authorization policy on specific clients per subject in a reusable way.
Closes #2621
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/configuration/schema/const.go')
| -rw-r--r-- | internal/configuration/schema/const.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/configuration/schema/const.go b/internal/configuration/schema/const.go index f7575939f..2ffde0e2c 100644 --- a/internal/configuration/schema/const.go +++ b/internal/configuration/schema/const.go @@ -120,6 +120,10 @@ var ( ) const ( + policyTwoFactor = "two_factor" +) + +const ( addressQueryParamUmask = "umask" ) |
