Browse Source

Only return active ConsumptionTypes in API

Maarten van den Berg 5 years ago
parent
commit
5fb08466ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      piket_server/__init__.py

+ 1 - 1
piket_server/__init__.py

378
 @app.route("/consumption_types", methods=["GET"])
378
 @app.route("/consumption_types", methods=["GET"])
379
 def get_consumption_types():
379
 def get_consumption_types():
380
     """ Return a list of currently active consumption types. """
380
     """ Return a list of currently active consumption types. """
381
-    ctypes = ConsumptionType.query.all()
381
+    ctypes = ConsumptionType.query.all().filter_by(active=True)
382
     result = [ct.as_dict for ct in ctypes]
382
     result = [ct.as_dict for ct in ctypes]
383
     return jsonify(consumption_types=result)
383
     return jsonify(consumption_types=result)
384
 
384