Function: forge--fetch-assignees

forge--fetch-assignees is a byte-compiled function defined in forge-gitlab.el.

Signature

(forge--fetch-assignees ARG &rest ARGS)

Implementations

(forge--fetch-assignees (REPO forge-gitlab-repository) CALLBACK) in `forge-gitlab.el'.

Undocumented

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-gitlab.el
;;;; Other

;; The extend of the documentation for "GET /projects/:id/users" is
;; "Get the users list of a project."  I don't know what that means,
;; but it stands to reason that this must at least overlap with the
;; set of users that can be assigned to topics.

(cl-defmethod forge--fetch-assignees ((repo forge-gitlab-repository) callback)
  (forge--glab-get repo "/projects/:project/users"
    '((per_page . 100))
    :unpaginate t
    :callback callback))