Function: getCustomColumns()
function getCustomColumns(guildId): object[] | undefined
Retrieves custom columns for a guild.
This helper returns the custom column definitions if configured. Returns undefined if no custom columns are set (uses provider defaults).
Parameters
| Parameter | Type | Description |
|---|---|---|
guildId | string | The Discord guild ID |
Returns
object[] | undefined
Array of custom column definitions or undefined
Example
const columns = getCustomColumns(guildId);
// [{ id: 'planning', name: 'Planning', order: 0 }, ...]