예제 #1
0
파일: api.py 프로젝트: valour01/malcom
    def get(self, action):
        if action == 'remove':
            try:
                _id = ObjectId(request.args.get('_id'))
            except InvalidId:
                return {'error': 'You must specify an ID'}, 400

            result = Model.remove_by_id(_id)
            return result

        if action == 'add':
            # TODO
            pass
예제 #2
0
파일: api.py 프로젝트: Mayur021/malcom
    def get(self, action):
        if action == 'remove':
            try:
                _id = ObjectId(request.args.get('_id'))
            except InvalidId:
                return {'error': 'You must specify an ID'}, 400

            result = Model.remove_by_id(_id)
            return result

        if action == 'add':
            # TODO
            pass
예제 #3
0
파일: api.py 프로젝트: CYJ/malcom
def delete(id):
	result = Model.remove_by_id(id)
	return (dumps(result), 200, {'Content-Type': 'application/json'})
예제 #4
0
파일: api.py 프로젝트: darron/malcom
def delete(id):
    result = Model.remove_by_id(id)
    return (dumps(result), 200, {'Content-Type': 'application/json'})