diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2022-06-14 17:20:13 +1000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-14 17:20:13 +1000 | 
| commit | 001589cd6d2bb1d7c740624ff4699c442fc5fcb2 (patch) | |
| tree | 82f235502d2cc8c4b5bc2f124183f15be2937f5c /internal/handlers/handler_configuration_password_policy.go | |
| parent | 607bbcc324e0d0410d0b25fd40358f0d2bd2e9b1 (diff) | |
feat(metrics): implement prometheus metrics (#3234)
Adds ability to record metrics and gather them for Prometheus.
Diffstat (limited to 'internal/handlers/handler_configuration_password_policy.go')
| -rw-r--r-- | internal/handlers/handler_configuration_password_policy.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/handlers/handler_configuration_password_policy.go b/internal/handlers/handler_configuration_password_policy.go index 3423eec54..f5014465d 100644 --- a/internal/handlers/handler_configuration_password_policy.go +++ b/internal/handlers/handler_configuration_password_policy.go @@ -6,7 +6,7 @@ import (  // PasswordPolicyConfigurationGET get the password policy configuration.  func PasswordPolicyConfigurationGET(ctx *middlewares.AutheliaCtx) { -	policyResponse := PassworPolicyBody{ +	policyResponse := PasswordPolicyBody{  		Mode: "disabled",  	}  | 
