chg: [backend] add statistics about number of publishers/projects
parent
ef25bc49c8
commit
520467947c
|
@ -29,7 +29,11 @@ def _validate_uuid(value=None):
|
||||||
@api.doc(description="Get information about the CyCAT backend services including status, overall statistics and version.")
|
@api.doc(description="Get information about the CyCAT backend services including status, overall statistics and version.")
|
||||||
class info(Resource):
|
class info(Resource):
|
||||||
def get(self):
|
def get(self):
|
||||||
return "CyCAT backend {}".format(version)
|
info = {}
|
||||||
|
info['publishers'] = r.zcard('t:1')
|
||||||
|
info['projects'] = r.zcard('t:2')
|
||||||
|
info['version'] = version
|
||||||
|
return info
|
||||||
|
|
||||||
@api.route('/generate/uuid')
|
@api.route('/generate/uuid')
|
||||||
@api.doc(description="Generate an UUID version 4 RFC4122-compliant.")
|
@api.doc(description="Generate an UUID version 4 RFC4122-compliant.")
|
||||||
|
|
Loading…
Reference in New Issue