Function: secrets-get-items

secrets-get-items is a byte-compiled function defined in secrets.el.gz.

Signature

(secrets-get-items COLLECTION-PATH)

Documentation

Return the object paths of all available items in COLLECTION-PATH.

Source Code

;; Defined in /usr/src/emacs/lisp/net/secrets.el.gz
;;; Items.

(defun secrets-get-items (collection-path)
  "Return the object paths of all available items in COLLECTION-PATH."
  (unless (secrets-empty-path collection-path)
    (dbus-get-property
     :session secrets-service collection-path
     secrets-interface-collection "Items")))