Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Cfg ... Cfg = &Config{} )
Functions ¶
func GetProjectFromIssueKey ¶
GetProjectFromIssueKey - ...
Types ¶
type Config ¶
type Config struct { // Username - Jira username for authentication Username string `yaml:"username"` // Password - Jira password for authentication Password string `yaml:"password"` // IncludeEstimatedTime - If 'true' includes Estimate time to report, also it can be passed in command via 'estimated-time' flag IncludeEstimatedTime bool `yaml:"include_estimated_time"` // IncludeLoggedTime - If 'true' includes Logged time to report, also it can be passed in command via 'log-time' flag IncludeLoggedTime bool `yaml:"include_logged_time"` // EligibleUsersHistories - updates from these users are considered valid when finding tickets from the last business day EligibleUsersHistories []string `yaml:"eligible_users_histories" default:"gitlab"` // ExcludeJiraProjects - Jira projects that tickets will be ignore while creating report ExcludeJiraProjects []string `yaml:"exclude_jira_projects" default:"retest"` // CmdStartTime - command start time in UTC CmdStartTime time.Time // NumberOfDaysForGetTickets - number of days for which we take tickets for report NumberOfDaysForGetTickets int }
Config - ...
Click to show internal directories.
Click to hide internal directories.