summaryrefslogtreecommitdiff
path: root/classes/iauthmodule.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-11-01 13:03:06 +0300
committerAndrew Dolgov <[email protected]>2019-11-01 13:03:06 +0300
commit68b0380118cc0ff4f8dc99125dce7d97b61e02f3 (patch)
treebaa17c8bceedb81e96269130be59b4543799bfe1 /classes/iauthmodule.php
parent88cd9e586e2e0d0ccea745018ba2f9a91e04ec93 (diff)
add placeholder authentication via app passwords if service is passed
forbid logins via regular passwords for services remove AUTH_DISABLE_OTP
Diffstat (limited to 'classes/iauthmodule.php')
-rw-r--r--classes/iauthmodule.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/iauthmodule.php b/classes/iauthmodule.php
index 9ec674078..2d0c98709 100644
--- a/classes/iauthmodule.php
+++ b/classes/iauthmodule.php
@@ -1,4 +1,4 @@
<?php
interface IAuthModule {
- function authenticate($login, $password);
+ function authenticate($login, $password); // + optional third parameter: $service
}