Function: secrets-get-alias

secrets-get-alias is an autoloaded and byte-compiled function defined in secrets.el.gz.

Signature

(secrets-get-alias ALIAS)

Documentation

Return the collection name ALIAS is referencing to.

For the time being, only the alias "default" is supported.

Source Code

;; Defined in /usr/src/emacs/lisp/net/secrets.el.gz
(defun secrets-get-alias (alias)
  "Return the collection name ALIAS is referencing to.
For the time being, only the alias \"default\" is supported."
  (secrets-get-collection-property
   (dbus-call-method
    :session secrets-service secrets-path
    secrets-interface-service "ReadAlias" alias)
   "Label"))