diff options
author | Jing Lu <lvjing5@huawei.com> | 2016-12-01 00:53:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-12-01 00:53:04 +0000 |
commit | 35c360e3e41c8e736604a434781a178a8a34204a (patch) | |
tree | 8efc124105f3e7b53dd2ef6c85a6d579b1614795 /api/urls.py | |
parent | f62146fc98322caa63c658b17589cfff280471fb (diff) | |
parent | bce19d39136c5e830e771ee449f22fca85fec259 (diff) |
Merge "Modify url mapping to make API more Restful"
Diffstat (limited to 'api/urls.py')
-rw-r--r-- | api/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/urls.py b/api/urls.py index eaaf8b6d1..323e5cb9f 100644 --- a/api/urls.py +++ b/api/urls.py @@ -11,7 +11,7 @@ from api.utils.common import Url urlpatterns = [ - Url('/yardstick/test/action', views.Test, 'test'), - Url('/yardstick/result/action', views.Result, 'result'), + Url('/yardstick/testcases/release/action', views.Release, 'release'), + Url('/yardstick/results', views.Results, 'results'), Url('/yardstick/env/action', views.Env, 'env') ] |