Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deck Rich-Object-String definitions for deck boards and cards #25070

Merged
merged 1 commit into from
Jan 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions lib/public/RichObjectStrings/Definitions.php
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,68 @@ class Definitions {
],
],
],
'deck-board' => [
'author' => 'Nextcloud',
'app' => 'deck',
'since' => '21.0.0',
'parameters' => [
'id' => [
'since' => '21.0.0',
'required' => true,
'description' => 'The id used to identify the board on the instance',
'example' => '1',
],
'name' => [
'since' => '21.0.0',
'required' => true,
'description' => 'The display name of the deck board',
'example' => 'Personal',
],
'link' => [
'since' => '21.0.0',
'required' => true,
'description' => 'The full URL to the board',
'example' => 'http://localhost/index.php/apps/deck/#/board/1',
],
],
],
'deck-card' => [
'author' => 'Nextcloud',
'app' => 'deck',
'since' => '21.0.0',
'parameters' => [
'id' => [
'since' => '21.0.0',
'required' => true,
'description' => 'The id used to identify the card on the instance',
'example' => '1',
],
'name' => [
'since' => '21.0.0',
'required' => true,
'description' => 'The title of the deck card',
'example' => 'Foo Bar',
],
'boardname' => [
'since' => '21.0.0',
'required' => true,
'description' => 'The display name of board which contains the card',
'example' => 'Personal',
],
'stackname' => [
'since' => '21.0.0',
'required' => true,
'description' => 'The display name of the stack which contains the card in the board',
'example' => 'To do',
],
'link' => [
'since' => '21.0.0',
'required' => true,
'description' => 'The full URL to the card directly',
'example' => 'https://nextcloud21.local/index.php/apps/deck/#/board/1/card/1',
],
],
],
'email' => [
'author' => 'Nextcloud',
'app' => 'sharebymail',
Expand Down