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

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Db/Direct.php')
-rw-r--r--lib/Db/Direct.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/Db/Direct.php b/lib/Db/Direct.php
index 92dcbe05..addd77ff 100644
--- a/lib/Db/Direct.php
+++ b/lib/Db/Direct.php
@@ -58,6 +58,15 @@ class Direct extends Entity {
/** @var int */
protected $templateId;
+ /** @var string */
+ protected $share;
+
+ /** @var string */
+ protected $initiatorHost;
+
+ /** @var string */
+ protected $initiatorToken;
+
public function __construct() {
$this->addType('token', 'string');
$this->addType('uid', 'string');
@@ -65,5 +74,8 @@ class Direct extends Entity {
$this->addType('timestamp', 'int');
$this->addType('template_destination', 'int');
$this->addType('template_id', 'int');
+ $this->addType('share', 'string');
+ $this->addType('initiator_host', 'string');
+ $this->addType('initiator_token', 'string');
}
}