Card: Show assigned users on board

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-10-01 17:05:16 +02:00
committed by Julius Härtl
parent 02ec4ae9d1
commit 99c31d3c00
6 changed files with 37 additions and 10 deletions

View File

@@ -33,10 +33,10 @@ use OCP\AppFramework\Controller;
class StackController extends Controller {
private $userId;
private $stackService;
public function __construct($appName, IRequest $request, StackService $cardService, $userId) {
public function __construct($appName, IRequest $request, StackService $stackService, $userId) {
parent::__construct($appName, $request);
$this->userId = $userId;
$this->stackService = $cardService;
$this->stackService = $stackService;
}
/**