summaryrefslogtreecommitdiffstats
path: root/app/api/responders/resource/clique_constraints.py
diff options
context:
space:
mode:
authorKoren Lev <korenlev@gmail.com>2017-10-15 01:38:44 +0300
committerKoren Lev <korenlev@gmail.com>2017-10-14 22:41:31 +0000
commite2f2060cbb7d14aeb1aff7fbca1408fe54aedbb1 (patch)
tree5f637d5076d0f0a87c4a24bd315395e0ab3adf23 /app/api/responders/resource/clique_constraints.py
parent3c9696e010451484fabb143a542c8364a4538669 (diff)
added schemes to support new ui link options + fix api per new schemes
Change-Id: I768233f13749d01d436c24c764cb903ca19d3d2a Signed-off-by: Koren Lev <korenlev@gmail.com> (cherry picked from commit 41ac4c4e9a6112d8c98472a1be60e4869814f549)
Diffstat (limited to 'app/api/responders/resource/clique_constraints.py')
-rw-r--r--app/api/responders/resource/clique_constraints.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/app/api/responders/resource/clique_constraints.py b/app/api/responders/resource/clique_constraints.py
index 09fa782..1761f8c 100644
--- a/app/api/responders/resource/clique_constraints.py
+++ b/app/api/responders/resource/clique_constraints.py
@@ -13,13 +13,12 @@ from bson.objectid import ObjectId
class CliqueConstraints(ResponderBase):
- def __init__(self):
- super().__init__()
- self.ID = '_id'
- self.PROJECTION = {
- self.ID: True
- }
- self.COLLECTION = 'clique_constraints'
+
+ COLLECTION = 'clique_constraints'
+ ID = '_id'
+ PROJECTION = {
+ ID: True
+ }
def on_get(self, req, resp):
self.log.debug("Getting clique_constraints")