LogoRobo.js
Packages@robojs/roadmap

RoadmapColumn

Type Alias: RoadmapColumn

type RoadmapColumn = {
  archived: boolean;
  createForum: boolean;
  id: string;
  name: string;
  order: number;
};

Describes a column or lane used to organize roadmap cards.

Type declaration

NameTypeDescription
archivedbooleanSignals whether items in this column should be considered archived.
createForum?booleanWhether to create a Discord forum channel for this column. If false, cards in this column are tracked but no forum thread is created. Defaults to true unless the column is archived.
idstringProvider assigned identifier for the column.
namestringHuman readable column label.
ordernumberRelative order used for sorting columns from left to right.

Remarks

Providers should return all actionable columns so the sync engine can mirror the structure in Discord. Archived columns inform downstream logic to hide or store cards without deleting data.

On this page