aboutsummaryrefslogtreecommitdiffstats
path: root/api/views.py
diff options
context:
space:
mode:
authorJing Lu <lvjing5@huawei.com>2016-12-01 00:53:04 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-12-01 00:53:04 +0000
commit35c360e3e41c8e736604a434781a178a8a34204a (patch)
tree8efc124105f3e7b53dd2ef6c85a6d579b1614795 /api/views.py
parentf62146fc98322caa63c658b17589cfff280471fb (diff)
parentbce19d39136c5e830e771ee449f22fca85fec259 (diff)
Merge "Modify url mapping to make API more Restful"
Diffstat (limited to 'api/views.py')
-rw-r--r--api/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/views.py b/api/views.py
index 7357625e0..065de673b 100644
--- a/api/views.py
+++ b/api/views.py
@@ -19,7 +19,7 @@ from api.actions import env as env_action
logger = logging.getLogger(__name__)
-class Test(Resource):
+class Release(Resource):
def post(self):
action = common_utils.translate_to_str(request.json.get('action', ''))
args = common_utils.translate_to_str(request.json.get('args', {}))
@@ -31,7 +31,7 @@ class Test(Resource):
return common_utils.error_handler('Wrong action')
-class Result(Resource):
+class Results(Resource):
def get(self):
args = common_utils.translate_to_str(request.args)
action = args.get('action', '')