Labels and Ranking

Issu helps you organize your backlog from within your code repositories.

Labeling issues is entirely customizable within Issu. Organizations can create and enforce labels that make sense for them and within their locale, and use linting to enforce and organize the labels consistently.

{
  created: '2025-01-28',
  difficulty: '2 - Normal',
  name: 'Etcha v2',
  priority: '4 - Gotta Have It',
  rank: '2:aaaacaaaaaaacabb',
  status: '3 - In Progress',
  type: 'Feature',
}
{
  labels: {
    difficulty: {
      required: true,
      type: 'text',
      values: [
        '1 - Easy',
        '2 - Normal',
        '3 - Heroic',
        '4 - Legendary',
      ]
    },
    priority: {
      required: true,
      type: 'text',
      values: [
        '0 - Probably Not',
        '1 - Idea',
        '2 - Like It',
        '3 - Love It',
        '4 - Gotta Have It',
      ]
    },
    status: {
      default: '1 - To Do',
      required: true,
      type: 'text',
      values: [
        '1 - To Do',
        '2 - Blocked',
        '3 - In Progress',
        '4 - Done',
      ]
    },
    time: {
      type: 'time',
    },
    type: {
      required: true,
      type: 'text',
      values: [
        'Chore',
        'Debt',
        'Feature',
        'Problem',
      ]
    }
  }
}