Variable: forge-owned-accounts

forge-owned-accounts is a customizable variable defined in forge-topics.el.

Value

nil

Documentation

An alist of accounts that are owned by you.

This should include your username as well as any organization that you own. Used by the commands forge-list-owned-issues, forge-list-owned-pullreqs and forge-fork.

Each element has the form (ACCOUNT . PLIST). The following properties are currently being used:

remote-name The default name suggested by forge-fork for a
  fork created within this account. If unspecified, then the
  name of the account is used.

This variable was added, or its default value changed, in forge version 0.2.0.

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-topics.el
(defcustom forge-owned-accounts nil
  "An alist of accounts that are owned by you.
This should include your username as well as any organization
that you own.  Used by the commands `forge-list-owned-issues',
`forge-list-owned-pullreqs' and `forge-fork'.

Each element has the form (ACCOUNT . PLIST).  The following
properties are currently being used:

`remote-name' The default name suggested by `forge-fork' for a
  fork created within this account.  If unspecified, then the
  name of the account is used."
  :package-version '(forge . "0.2.0")
  :group 'forge
  :type '(repeat (cons (string :tag "Account") plist)))