Esempio n. 1
0
def getSection(id):
	c = CatalogModel()
	result = {}
	topic = c.getTopicById(id)
	result = topic
	children = c.getTopicChildren(id)
	result['children'] = children['children']
	if result is None:
		abort(404)

	return jsonify({'result': result})