Function: forge--repository-ids

forge--repository-ids is a byte-compiled function defined in forge-core.el.

Signature

(forge--repository-ids CLASS HOST OWNER NAME &optional STUB NOERROR)

Documentation

Return the database and forge ids for the specified CLASS object.

Implementations

(forge--repository-ids (CLASS (subclass forge-noapi-repository)) HOST OWNER NAME &optional STUB NOERROR) in `forge-repo.el'.

Undocumented

(forge--repository-ids (CLASS (subclass forge-repository)) HOST OWNER NAME &optional STUB NOERROR) in `forge-repo.el'.

Return (OUR-ID . THEIR-ID) of the specified repository. If optional STUB is non-nil, then the IDs are not guaranteed to be unique. Otherwise this method has to make an API request to retrieve THEIR-ID, the repository's ID on the forge. In that case OUR-ID derives from THEIR-ID and is unique across all forges and hosts.

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-core.el
(cl-defgeneric forge--repository-ids ( class host owner name
                                       &optional stub noerror)
  "Return the database and forge ids for the specified CLASS object.")