From aa33bf37a81970f7d6d1dc868cb1f29d1ef7585c Mon Sep 17 00:00:00 2001 From: Maximilian Krambach Date: Wed, 27 Feb 2019 17:10:27 +0100 Subject: [PATCH] fix assign url in motion- moveToItem --- .../src/app/site/motions/services/motion-multiselect.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/site/motions/services/motion-multiselect.service.ts b/client/src/app/site/motions/services/motion-multiselect.service.ts index 58e603ea7..f8e06a772 100644 --- a/client/src/app/site/motions/services/motion-multiselect.service.ts +++ b/client/src/app/site/motions/services/motion-multiselect.service.ts @@ -81,7 +81,7 @@ export class MotionMultiselectService { items: motions.map(motion => motion.agenda_item_id), parent_id: selectedChoice.items as number }; - await this.httpService.post('/rest/agenda/item/assign', requestData); + await this.httpService.post('/rest/agenda/item/assign/', requestData); } }