From 12e22b32e6023e06769761788738cd6dc5a9cea3 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 23 Jul 2018 15:54:14 +0300 Subject: Change: allow projects, pipelines, etc, have a foo/bar/baz syntax --- ick2/apibase.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ick2/apibase.py') diff --git a/ick2/apibase.py b/ick2/apibase.py index 9e3eaff..b629f68 100644 --- a/ick2/apibase.py +++ b/ick2/apibase.py @@ -23,6 +23,7 @@ class APIbase: self._trans = ick2.TransactionalState(state) def get_routes(self, path): + resource_path = '{}/'.format(path) return [ { 'method': 'POST', @@ -36,17 +37,17 @@ class APIbase: }, { 'method': 'GET', - 'path': '{}/'.format(path), + 'path': resource_path, 'callback': self.GET(self.show), }, { 'method': 'PUT', - 'path': '{}/'.format(path), + 'path': resource_path, 'callback': self.PUT(self.update), }, { 'method': 'DELETE', - 'path': '{}/'.format(path), + 'path': resource_path, 'callback': self.DELETE(self.delete), }, ] -- cgit v1.2.1