From e2f2060cbb7d14aeb1aff7fbca1408fe54aedbb1 Mon Sep 17 00:00:00 2001 From: Koren Lev Date: Sun, 15 Oct 2017 01:38:44 +0300 Subject: added schemes to support new ui link options + fix api per new schemes Change-Id: I768233f13749d01d436c24c764cb903ca19d3d2a Signed-off-by: Koren Lev (cherry picked from commit 41ac4c4e9a6112d8c98472a1be60e4869814f549) --- app/api/responders/resource/aggregates.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/api/responders/resource/aggregates.py') diff --git a/app/api/responders/resource/aggregates.py b/app/api/responders/resource/aggregates.py index d0b8031..ca4610e 100644 --- a/app/api/responders/resource/aggregates.py +++ b/app/api/responders/resource/aggregates.py @@ -12,9 +12,11 @@ from api.validation.data_validate import DataValidate class Aggregates(ResponderBase): + + AGGREGATE_TYPES = ["environment", "message", "constant"] + def __init__(self): super().__init__() - self.AGGREGATE_TYPES = ["environment", "message", "constant"] self.AGGREGATES_MAP = { "environment": self.get_environments_aggregates, "message": self.get_messages_aggregates, -- cgit 1.2.3-korg