Commit new state
This commit is contained in:
@@ -203,7 +203,7 @@
|
||||
<field>
|
||||
<name>title</name>
|
||||
<type>text</type>
|
||||
<notnull>true</notnull>
|
||||
<notnull>false</notnull>
|
||||
<length>64</length>
|
||||
</field>
|
||||
<field>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<description>My first ownCloud app</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Julius Härtl</author>
|
||||
<version>0.0.1.9</version>
|
||||
<version>0.0.1.10</version>
|
||||
<namespace>Deck</namespace>
|
||||
<category>other</category>
|
||||
<dependencies>
|
||||
|
||||
@@ -40,6 +40,14 @@ return [
|
||||
['name' => 'card#rename', 'url' => '/cards/rename/', 'verb' => 'PUT'],
|
||||
['name' => 'card#reorder', 'url' => '/cards/reorder/', 'verb' => 'PUT'],
|
||||
['name' => 'card#delete', 'url' => '/cards/{cardId}/', 'verb' => 'DELETE'],
|
||||
// card - assign labels
|
||||
['name' => 'card#assignLabel', 'url' => '/cards/{cardId}/label/{labelId}', 'verb' => 'POST'],
|
||||
['name' => 'card#removeLabel', 'url' => '/cards/{cardId}/label/{labelId}', 'verb' => 'DELETE'],
|
||||
|
||||
// labels
|
||||
['name' => 'label#create', 'url' => '/labels/', 'verb' => 'POST'],
|
||||
['name' => 'label#update', 'url' => '/labels/', 'verb' => 'PUT'],
|
||||
['name' => 'label#delete', 'url' => '/labels/{labelId}/', 'verb' => 'DELETE'],
|
||||
|
||||
// TODO: Implement public board sharing
|
||||
['name' => 'public#index', 'url' => '/public/board/:hash', 'verb' => 'GET'],
|
||||
|
||||
Reference in New Issue
Block a user