This commit is contained in:
Julius Haertl
2016-07-28 23:37:38 +02:00
parent 43023aa9d3
commit d61dcdb614
19 changed files with 220 additions and 57 deletions

View File

@@ -22,10 +22,10 @@ return [
['name' => 'board#read', 'url' => '/boards/{boardId}/', 'verb' => 'GET'],
['name' => 'board#update', 'url' => '/boards/', 'verb' => 'PUT'],
['name' => 'board#delete', 'url' => '/boards/{boardId}/', 'verb' => 'DELETE'],
// boards - sharees
['name' => 'board#addSharee', 'url' => '/boards/sharee', 'verb' => 'POST'],
['name' => 'board#removeSharee', 'url' => '/boards/sharee', 'verb' => 'DELETE'],
['name' => 'board#updateSharee', 'url' => '/boards/sharee', 'verb' => 'PUT'],
// boards - acl
['name' => 'board#addAcl', 'url' => '/boards/acl', 'verb' => 'POST'],
['name' => 'board#updateAcl', 'url' => '/boards/acl', 'verb' => 'PUT'],
['name' => 'board#deleteAcl', 'url' => '/boards/acl/{id}', 'verb' => 'DELETE'],
// stacks
['name' => 'stack#index', 'url' => '/stacks/{boardId}/', 'verb' => 'GET'],