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