From 76253536600fa18019eb34963a5a97a880b971f8 Mon Sep 17 00:00:00 2001 From: Sasha Anastasi Date: Thu, 16 Nov 2023 14:02:14 +1300 Subject: [PATCH] auth.php: add supports_mfa function for T18 core_mfa compatibility test --- auth.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/auth.php b/auth.php index 4bf8c85..92625f8 100644 --- a/auth.php +++ b/auth.php @@ -65,4 +65,8 @@ class auth_plugin_outage extends auth_plugin_base { public function user_login($username, $password) { return false; } + + public static function supports_mfa(): bool { + return true; + } }