Merge "Drop query parameter 'id' from identity mapping"

This commit is contained in:
Zuul
2022-09-30 11:59:07 +00:00
committed by Gerrit Code Review
2 changed files with 1 additions and 4 deletions

View File

@@ -27,9 +27,7 @@ class Mapping(resource.Resource):
create_method = 'PUT'
commit_method = 'PATCH'
_query_mapping = resource.QueryParameters(
'id',
)
_query_mapping = resource.QueryParameters()
# Properties
#: The rules of this mapping. *Type: list*

View File

@@ -38,7 +38,6 @@ class TestMapping(base.TestCase):
self.assertDictEqual(
{
'id': 'id',
'limit': 'limit',
'marker': 'marker',
},