Documentation
¶
Index ¶
Constants ¶
View Source
const ( BeforeSprint = "BEFORE_SPRINT" DuringSprint = "DURING_SPRINT" AfterSprint = "AFTER_SPRINT" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Board ¶
type Board struct {
domainlayer.DomainEntity
Name string
Description string
Url string
CreatedDate *time.Time
}
type BoardIssue ¶
type BoardSprint ¶ added in v0.7.0
type Issue ¶
type Issue struct {
domainlayer.DomainEntity
Url string
Key string
Title string
Summary string
EpicKey string
Type string
Status string
StoryPoint uint
ResolutionDate *time.Time
CreatedDate *time.Time
UpdatedDate *time.Time
LeadTimeMinutes uint
ParentIssueId string
Priority string
OriginalEstimateMinutes int64
TimeSpentMinutes int64
TimeRemainingMinutes int64
CreatorId string
AssigneeId string
OwnerId string
}
type IssueAssigneeHistory ¶ added in v0.7.0
type IssueAssigneeHistory struct {
common.NoPKModel
IssueId string `gorm:"primaryKey"`
Assignee string `gorm:"primaryKey"`
StartDate time.Time `gorm:"primaryKey"`
EndDate *time.Time
}
func (IssueAssigneeHistory) TableName ¶ added in v0.7.0
func (IssueAssigneeHistory) TableName() string
type IssueSprintsHistory ¶ added in v0.7.0
type IssueSprintsHistory struct {
common.NoPKModel
IssueId string `gorm:"primaryKey"`
SprintId string `gorm:"primaryKey"`
StartDate time.Time `gorm:"primaryKey"`
EndDate *time.Time
}
func (IssueSprintsHistory) TableName ¶ added in v0.7.0
func (IssueSprintsHistory) TableName() string
type IssueStatusHistory ¶ added in v0.7.0
type IssueStatusHistory struct {
common.NoPKModel
IssueId string `gorm:"primaryKey"`
Status string `gorm:"primaryKey"`
StartDate time.Time `gorm:"primaryKey"`
EndDate *time.Time
}
func (IssueStatusHistory) TableName ¶ added in v0.7.0
func (IssueStatusHistory) TableName() string
type SprintIssue ¶
Click to show internal directories.
Click to hide internal directories.