Merge pull request #4420 from MaximilianKrambach/fixMoveToItem

fix assign url in motion- moveToItem
This commit is contained in:
Emanuel Schütze 2019-02-27 22:17:31 +01:00 committed by GitHub
commit c7129edb02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ export class MotionMultiselectService {
items: motions.map(motion => motion.agenda_item_id), items: motions.map(motion => motion.agenda_item_id),
parent_id: selectedChoice.items as number parent_id: selectedChoice.items as number
}; };
await this.httpService.post('/rest/agenda/item/assign', requestData); await this.httpService.post('/rest/agenda/item/assign/', requestData);
} }
} }