Merge pull request #23282 from nextcloud/backport/23269/stable19

[stable19] Fix the user remove from group in UI
This commit is contained in:
Morris Jobke 2020-10-12 21:39:37 +02:00 committed by GitHub
commit ad191f8846
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -76,6 +76,6 @@ export default {
return axios.put(sanitize(url), data)
},
delete(url, data) {
return axios.delete(sanitize(url), { data: data })
return axios.delete(sanitize(url), { params: data })
},
}