def get_entityset(entityset_id): return EntitySet.by_id(entityset_id)
def get_entityset(entityset_id, action=Authz.READ): eset = obj_or_404(EntitySet.by_id(entityset_id)) require(request.authz.can(eset.collection_id, action)) return eset