5

When creating New Ticket in the TRAC it shows a selectbox for component in the Ticket Properties. I only have two dummy options: component1 and component2.

How do I edit this list? How do I add more components to the project?

TylerH
  • 20,799
  • 66
  • 75
  • 101
Josef Sábl
  • 7,538
  • 9
  • 54
  • 66

2 Answers2

14

The easiest way to achieve this is via the WebAdmin plugin. You can easily edit your components, ticket types, severtities, etc from there.

As Oliver Giesen informs us in his comment: With trac 0.11 and higher, the WebAdmin plugin is already part of the standard install.

innaM
  • 47,505
  • 4
  • 67
  • 87
8
trac-admin component list
    -- Show available components
trac-admin component add  
    -- Add a new component
trac-admin component rename  
    -- Rename a component
trac-admin component remove 
    -- Remove/uninstall component
trac-admin component chown  
    -- Change component ownership
kmkaplan
  • 18,655
  • 4
  • 51
  • 65