First commit >:]
This commit is contained in:
41
constants.go
Normal file
41
constants.go
Normal file
@@ -0,0 +1,41 @@
|
||||
package main
|
||||
|
||||
const (
|
||||
CUSTOM_FIELD_TEAM = "customfield_14580"
|
||||
)
|
||||
|
||||
func GetDeadlineResourcePath() string {
|
||||
return "resources/settings/deadline.txt"
|
||||
}
|
||||
|
||||
func GetDashboardTitle() string {
|
||||
return "PI-8 DASHBOARD"
|
||||
}
|
||||
|
||||
func GetTeamNames() []string {
|
||||
return []string{"devops", "gaia", "igaluk", "orion", "pulsar", "solaris", "supernova"}
|
||||
}
|
||||
|
||||
func GetPOList() []string {
|
||||
return []string{"dbenavid", "el076320", "em031838", "ktsui", "ma031420"}
|
||||
}
|
||||
|
||||
func GetBountyJQL() string {
|
||||
return `project = GERSSW AND ("Epic Link" =GERSSW-4971 OR "Epic Link" =GERSSW-3759) AND Status = Accepted`
|
||||
}
|
||||
|
||||
func GetCompletionText() string {
|
||||
return "PHASE B COMPLETE"
|
||||
}
|
||||
|
||||
func GetTimerFormatString() string {
|
||||
return "D:H:M:S"
|
||||
}
|
||||
|
||||
func GetWinnerText(qty int) string {
|
||||
str := "OUR WINNER"
|
||||
if qty > 1 {
|
||||
str = str + "S"
|
||||
}
|
||||
return str
|
||||
}
|
||||
Reference in New Issue
Block a user