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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2019-09-26 10:27:03 +0300
committerGitHub <noreply@github.com>2019-09-26 10:27:03 +0300
commit472ce5cbcec3eeb4b811c3609a5d71de322c0888 (patch)
tree715014fe420a441dce5291a17d32d2b07ed37a05 /lib
parent6217b45e268c95c9a9e9a77072b20010589413ad (diff)
parent23cf72493a73486fe590f578b2e3f5e4b907a405 (diff)
Merge pull request #17181 from nextcloud/feature/noid/talk-attachment
Add talk-attachment as a rich object type
Diffstat (limited to 'lib')
-rw-r--r--lib/public/RichObjectStrings/Definitions.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/public/RichObjectStrings/Definitions.php b/lib/public/RichObjectStrings/Definitions.php
index 3476777e0db..55c31607659 100644
--- a/lib/public/RichObjectStrings/Definitions.php
+++ b/lib/public/RichObjectStrings/Definitions.php
@@ -405,6 +405,43 @@ class Definitions {
],
],
],
+ 'talk-attachment' => [
+ 'author' => 'Nextcloud',
+ 'app' => 'talk',
+ 'since' => '18.0.0',
+ 'parameters' => [
+ 'id' => [
+ 'since' => '18.0.0',
+ 'required' => true,
+ 'description' => 'The id used to identify the attachment on the instance',
+ 'example' => '12345',
+ ],
+ 'name' => [
+ 'since' => '18.0.0',
+ 'required' => true,
+ 'description' => 'The name of the attachment',
+ 'example' => 'John Doe',
+ ],
+ 'conversation' => [
+ 'since' => '18.0.0',
+ 'required' => true,
+ 'description' => 'The token of the conversation',
+ 'example' => 'a1b2c3d4',
+ ],
+ 'mimetype' => [
+ 'since' => '18.0.0',
+ 'required' => false,
+ 'description' => 'The mimetype of the file/folder to allow clients to show a placeholder',
+ 'example' => 'text/plain',
+ ],
+ 'preview-available' => [
+ 'since' => '18.0.0',
+ 'required' => false,
+ 'description' => 'Whether or not a preview is available. If `no` the mimetype icon should be used',
+ 'example' => 'yes',
+ ],
+ ],
+ ],
'user' => [
'author' => 'Nextcloud',
'app' => 'core',