diff options
author | rohitsakala <rohitsakala@gmail.com> | 2017-01-03 22:38:38 +0530 |
---|---|---|
committer | Rohit Sakala <rohitsakala@gmail.com> | 2017-01-04 09:07:25 +0000 |
commit | 03758419b54c28d13189f310a6de5e1815423ee5 (patch) | |
tree | fe76bcbf0ad20b276bfd7808ddc49ddc49cc6695 /utils/test/testapi/opnfv_testapi/resources/handlers.py | |
parent | 0520eae9676a06946dee8545d8cae61f80648ce2 (diff) |
Update nicknames in swagger spec
Swagger codegen uses nicknames for defining titles in the api
documentation.
Link - https://github.com/OAI/OpenAPI-Specification/blob/master/versions/1.2.md
Change-Id: Ia35718b77dfcac53317384c4445225f28e505919
Signed-off-by: rohitsakala <rohitsakala@gmail.com>
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/resources/handlers.py')
-rw-r--r-- | utils/test/testapi/opnfv_testapi/resources/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/test/testapi/opnfv_testapi/resources/handlers.py b/utils/test/testapi/opnfv_testapi/resources/handlers.py index 5059f5d77..f1ad15e97 100644 --- a/utils/test/testapi/opnfv_testapi/resources/handlers.py +++ b/utils/test/testapi/opnfv_testapi/resources/handlers.py @@ -227,7 +227,7 @@ class GenericApiHandler(RequestHandler): class VersionHandler(GenericApiHandler): - @swagger.operation(nickname='list') + @swagger.operation(nickname='List all versions') def get(self): """ @description: list all supported versions |