Minor fixes.

This commit is contained in:
Julien Fontanet 2014-01-06 14:52:58 +01:00
parent 3f7ec9e0c2
commit d8153d1263

View File

@ -9,7 +9,8 @@ do ->
'task' 'task'
] ]
$_.each types, (type) -> $_.each types, (type) ->
exports["#{type}.destroy"] = (session, request) -> exports[type] ?= {}
exports[type].destroy = (session, request) ->
{id} = request.params {id} = request.params
@throw 'INVALID_PARAMS' unless id? @throw 'INVALID_PARAMS' unless id?
@ -19,7 +20,7 @@ do ->
@checkPermission session, 'admin' @checkPermission session, 'admin'
# Retrieves the object. # Retrieves the object.
object = @xo.objects.get id object = @xo.xobjs.get id
@throw 'NO_SUCH_OBJECT' unless object? @throw 'NO_SUCH_OBJECT' unless object?
# Gets the corresponding connection. # Gets the corresponding connection.