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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/Model
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-10-30 15:41:11 +0300
committerJoas Schilling <coding@schilljs.com>2020-11-26 11:46:42 +0300
commitcebc64099efd2ff66ffeaf45e3764defc6a7fddc (patch)
treebd198565c1bfb51b950a3eaeefc8efe5dc19859d /lib/Model
parentad0032a64f24cd8a6f060a39f113a073780c4400 (diff)
Add a comment about the session
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Model')
-rw-r--r--lib/Model/Session.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Model/Session.php b/lib/Model/Session.php
index 172e39ef9..0acabf593 100644
--- a/lib/Model/Session.php
+++ b/lib/Model/Session.php
@@ -26,6 +26,14 @@ namespace OCA\Talk\Model;
use OCP\AppFramework\Db\Entity;
/**
+ * A session is the "I'm online in this conversation" state of Talk, you get one
+ * when opening the conversation while the inCall flag tells if you are just
+ * online (chatting), or in a call (with audio, camera or even sip).
+ * Currently it's limited to 1 per attendee, but the plan is to remove this
+ * restriction in the future, so e.g. in the future you can join with your phone
+ * on the SIP bridge, have your video/screenshare on the laptop and chat in the
+ * mobile app.
+ *
* @method void setAttendeeId(int $attendeeId)
* @method string getAttendeeId()
* @method void setSessionId(string $sessionId)