Add get_parameter_history implementation and tests
This commit is contained in:
parent
b4fb4b3b5d
commit
aeb7974549
3 changed files with 71 additions and 1 deletions
|
|
@ -527,7 +527,10 @@ class SimpleSystemManagerBackend(BaseBackend):
|
|||
|
||||
return result
|
||||
|
||||
return result
|
||||
def get_parameter_history(self, name, with_decryption):
|
||||
if name in self._parameters:
|
||||
return self._parameters[name]
|
||||
return None
|
||||
|
||||
def _match_filters(self, parameter, filters=None):
|
||||
"""Return True if the given parameter matches all the filters"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue