diff --git a/agent/systemauth/biometrics/touchid.go b/agent/systemauth/biometrics/touchid.go index f20e2e4..710566d 100644 --- a/agent/systemauth/biometrics/touchid.go +++ b/agent/systemauth/biometrics/touchid.go @@ -20,3 +20,7 @@ func CheckBiometrics(approvalType Approval) bool { return false } } + +func BiometricsWorking() bool { + return false +} diff --git a/agent/systemauth/biometrics/windows.go b/agent/systemauth/biometrics/windows.go index 8bcc1c4..e86cfe9 100644 --- a/agent/systemauth/biometrics/windows.go +++ b/agent/systemauth/biometrics/windows.go @@ -6,3 +6,7 @@ func CheckBiometrics(approvalType Approval) bool { log.Info("Biometrics undefined on windows... skipping") return true } + +func BiometricsWorking() bool { + return false +}