Remove links from oauth consumers
This should be the last of the v3 identity objects that return a links section upon create or show. Change-Id: I45a3b43c303bfed73950095bec8860cbea7a559c
This commit is contained in:
		 Steve Martinelli
					Steve Martinelli
				
			
				
					committed by
					
						 gustavo panizzo
						gustavo panizzo
					
				
			
			
				
	
			
			
			 gustavo panizzo
						gustavo panizzo
					
				
			
						parent
						
							8af2e78afb
						
					
				
				
					commit
					ffcb553555
				
			| @@ -46,9 +46,8 @@ class CreateConsumer(show.ShowOne): | ||||
|         consumer = identity_client.oauth1.consumers.create( | ||||
|             parsed_args.description | ||||
|         ) | ||||
|         info = {} | ||||
|         info.update(consumer._info) | ||||
|         return zip(*sorted(six.iteritems(info))) | ||||
|         consumer._info.pop('links', None) | ||||
|         return zip(*sorted(six.iteritems(consumer._info))) | ||||
|  | ||||
|  | ||||
| class DeleteConsumer(command.Command): | ||||
| @@ -147,6 +146,5 @@ class ShowConsumer(show.ShowOne): | ||||
|         consumer = utils.find_resource( | ||||
|             identity_client.oauth1.consumers, parsed_args.consumer) | ||||
|  | ||||
|         info = {} | ||||
|         info.update(consumer._info) | ||||
|         return zip(*sorted(six.iteritems(info))) | ||||
|         consumer._info.pop('links', None) | ||||
|         return zip(*sorted(six.iteritems(consumer._info))) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user