From d10d2b34f364d80d2c3f3794b8e1e64fc8058be4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Hermida?= Date: Thu, 26 Apr 2018 12:42:57 +0200 Subject: [PATCH] Add multiple assigned users dashboard --- app/modules/home/home.service.coffee | 2 +- app/modules/home/home.service.spec.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/modules/home/home.service.coffee b/app/modules/home/home.service.coffee index 06a9e89f..e64d6b09 100644 --- a/app/modules/home/home.service.coffee +++ b/app/modules/home/home.service.coffee @@ -110,7 +110,7 @@ class HomeService extends taiga.Service params_uss = { is_closed: false - assigned_to: userId + assigned_users: userId } params_tasks = { diff --git a/app/modules/home/home.service.spec.coffee b/app/modules/home/home.service.spec.coffee index c1fb818d..04c79e2b 100644 --- a/app/modules/home/home.service.spec.coffee +++ b/app/modules/home/home.service.spec.coffee @@ -107,7 +107,7 @@ describe "tgHome", -> mocks.resources.userstories.listInAllProjects .withArgs(sinon.match({ is_closed: false - assigned_to: userId + assigned_users: userId })) .promise() .resolve(Immutable.fromJS([{id: 1, ref: 1, project: "1"}]))