Documentation
¶
Index ¶
Constants ¶
View Source
const DevhackBaseURL = "https://bugs.devhack.net"
DevhackBaseURL is the base URL for bugs.devhack.net.
Variables ¶
This section is empty.
Functions ¶
func ParseTicketURL ¶
ParseTicketURL parses a ticket URL and returns the base URL and ticket ID.
func ParseTicketURLWithBaseURL ¶
ParseTicketURLWithBaseURL parses a ticket URL and asserts that the given base URL matches the ticket's base URL.
Types ¶
type Ticket ¶
type Ticket struct {
ID int32 `json:"id" csv:"id"`
Summary string `json:"summary" csv:"summary"`
Reporter string `json:"reporter" csv:"reporter"`
Owner string `json:"owner" csv:"owner"`
Description string `json:"description" csv:"description"`
Type string `json:"type" csv:"type"`
Status string `json:"status" csv:"status"`
Priority string `json:"priority" csv:"priority"`
Milestone string `json:"milestone" csv:"milestone"`
Component string `json:"component" csv:"component"`
Resolution string `json:"resolution" csv:"resolution"`
Keywords string `json:"keywords" csv:"keywords"`
CC string `json:"cc" csv:"cc"`
}
Ticket represents a bug or issue in the Trac system.
Click to show internal directories.
Click to hide internal directories.