diff options
Diffstat (limited to 'functest/api/urls.py')
-rw-r--r-- | functest/api/urls.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/functest/api/urls.py b/functest/api/urls.py index f7bcae38..59bf7d51 100644 --- a/functest/api/urls.py +++ b/functest/api/urls.py @@ -25,8 +25,9 @@ URLPATTERNS = [ # GET /api/v1/functest/envs => GET environment Url('/api/v1/functest/envs', 'v1_envs'), - # POST /api/v1/functest/envs/action , {"action":"prepare"} - # => Prepare environment + # POST /api/v1/functest/envs/action + # {"action":"prepare"} => Prepare environment + # {"action":"update_hosts", "args": {}} => Update hosts info Url('/api/v1/functest/envs/action', 'v1_envs'), # GET /api/v1/functest/openstack/credentials => GET credentials |