This commit is contained in:
Julius Haertl
2016-06-20 10:44:41 +02:00
parent ba8283dcdf
commit c0a9f010a8
28 changed files with 691 additions and 106 deletions

View File

@@ -88,6 +88,12 @@
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>description</name>
<type>text</type>
<notnull>false</notnull>
<length>4096</length>
</field>
<field>
<name>stack_id</name>
<type>integer</type>
@@ -207,10 +213,10 @@
<notnull>false</notnull>
</field>
<field>
<name>owner</name>
<type>text</type>
<name>board_id</name>
<type>integer</type>
<notnull>true</notnull>
<length>64</length>
<length>8</length>
</field>
</declaration>
</table>

View File

@@ -5,7 +5,7 @@
<description>My first ownCloud app</description>
<licence>AGPL</licence>
<author>Julius Härtl</author>
<version>0.0.1.7</version>
<version>0.0.1.9</version>
<namespace>Deck</namespace>
<category>other</category>
<dependencies>

View File

@@ -37,6 +37,7 @@ return [
['name' => 'card#read', 'url' => '/cards/{cardId}/', 'verb' => 'GET'],
['name' => 'card#create', 'url' => '/cards/', 'verb' => 'POST'],
['name' => 'card#update', 'url' => '/cards/', 'verb' => 'PUT'],
['name' => 'card#rename', 'url' => '/cards/rename/', 'verb' => 'PUT'],
['name' => 'card#reorder', 'url' => '/cards/reorder/', 'verb' => 'PUT'],
['name' => 'card#delete', 'url' => '/cards/{cardId}/', 'verb' => 'DELETE'],

View File

@@ -1 +1 @@
0.0.1.4
0.0.1.5