Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/Db
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-07-01 16:10:21 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-07-01 17:09:14 +0300
commit78704879b437a93cc3028418cfd65cbee886ee81 (patch)
tree4b1016d6d4122d5a78ef48b56721973d37c6ede8 /lib/Db
parentff28c48255c1247228c777b52a786667f5b4c0b3 (diff)
Add support for XOAUTH2
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Db')
-rw-r--r--lib/Db/MailAccount.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Db/MailAccount.php b/lib/Db/MailAccount.php
index 7703165b8..b24ca0729 100644
--- a/lib/Db/MailAccount.php
+++ b/lib/Db/MailAccount.php
@@ -91,6 +91,8 @@ use OCP\AppFramework\Db\Entity;
* @method void setSievePassword(?string $sievePassword)
* @method bool|null isSignatureAboveQuote()
* @method void setSignatureAboveQuote(bool $signatureAboveQuote)
+ * @method string getAuthMethod()
+ * @method void setAuthMethod(string $method)
*/
class MailAccount extends Entity {
protected $userId;
@@ -112,6 +114,7 @@ class MailAccount extends Entity {
protected $order;
protected $showSubscribedOnly;
protected $personalNamespace;
+ protected $authMethod;
/** @var int|null */
protected $draftsMailboxId;