Some more stuff

This commit is contained in:
Julius Haertl
2016-06-05 23:39:15 +02:00
parent e10fe82afb
commit ae9d5da329
18 changed files with 1027 additions and 185 deletions

View File

@@ -41,13 +41,13 @@ class StackController extends Controller {
/**
* @NoAdminRequired
*/
public function update($id, $title, $color) {
return $this->stackService->update($id, $title, $this->userId, $color);
public function update($id, $title, $boardId, $order) {
return $this->stackService->update($id, $title, $boardId, $order);
}
/**
* @NoAdminRequired
*/
public function delete($boardId) {
return $this->stackService->delete($this->userId, $boardId);
public function delete($stackId) {
return $this->stackService->delete($this->userId, $stackId);
}
}