Add get_unique_values() func to the datastore.
This commit is contained in:
parent
6b90f192a2
commit
13885e621b
@ -150,3 +150,6 @@ def unmount(mount_point_id):
|
|||||||
|
|
||||||
def mounts():
|
def mounts():
|
||||||
return dbus_helpers.mounts()
|
return dbus_helpers.mounts()
|
||||||
|
|
||||||
|
def get_unique_values(key):
|
||||||
|
return dbus_helpers.get_unique_values(key)
|
||||||
|
@ -75,3 +75,6 @@ def unmount(mount_point_id):
|
|||||||
def mounts():
|
def mounts():
|
||||||
return _data_store.mounts()
|
return _data_store.mounts()
|
||||||
|
|
||||||
|
def get_unique_values(key):
|
||||||
|
return _data_store.get_uniquevaluesfor(key, {})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user