This commit is contained in:
Julien Fontanet 2015-04-14 15:24:28 +02:00
parent 311f8cd00f
commit 04bbb84845
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ add.description = 'add a new ACL entry'
// -------------------------------------------------------------------
export const remove = coroutine(function * ({subject, object}) {
yield this.acls.deconste(subject, object)
yield this.acls.delete(subject, object)
})
remove.permission = 'admin'

View File

@ -52,7 +52,7 @@ scan.resolve = {
// -------------------------------------------------------------------
// TODO: find a way to call this "deconste" and not destroy
// TODO: find a way to call this "delete" and not destroy
export const destroy = coroutine(function ({SR}) {
const xapi = this.getXAPI(SR)