Fix deleting task relations

See vikunja/api/commit/eb3a94567817b78a3325a937cedce237837e3785
This commit is contained in:
kolaente 2021-02-18 23:36:06 +01:00
parent 1fb52fb750
commit 08dcc77228
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ export default class TaskRelationService extends AbstractService {
constructor() {
super({
create: '/tasks/{taskId}/relations',
delete: '/tasks/{taskId}/relations',
delete: '/tasks/{taskId}/relations/{relationKind}/{otherTaskId}',
})
}