Documentation
¶
Index ¶
- func CollectBoard(boardId uint64) error
- func CollectChangelogs(boardId uint64) error
- func CollectIssues(boardId uint64) error
- func EnrichIssues(boardId uint64) error
- type JiraApiAuthor
- type JiraApiBoard
- type JiraApiChangeLog
- type JiraApiChangelogItem
- type JiraApiChangelogsResponse
- type JiraApiClient
- type JiraApiIssue
- type JiraApiIssuesResponse
- type JiraApiLocation
- type JiraPagination
- type JiraPaginationHandler
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CollectBoard ¶
func CollectChangelogs ¶
func CollectIssues ¶
func EnrichIssues ¶
Types ¶
type JiraApiAuthor ¶
type JiraApiBoard ¶
type JiraApiBoard struct {
Id uint64 `json:"id"`
Self string `json:"self"`
Name string `json:"name"`
Type string `json:"type"`
Location *JiraApiLocation
}
type JiraApiChangeLog ¶
type JiraApiChangeLog struct {
Id string `json:"id,omitempty"`
Author JiraApiAuthor `json:"author,omitempty"`
Created core.Iso8601Time `json:"created,omitempty"`
Items []JiraApiChangelogItem `json:"items,omitempty"`
}
type JiraApiChangelogItem ¶
type JiraApiChangelogItem struct {
Field string `json:"field,omitempty"`
FieldType string `json:"fieldType,omitempty"`
FieldId string `json:"fieldId,omitempty"`
From string `json:"from,omitempty"`
FromString string `json:"fromString,omitempty"`
To string `json:"to,omitempty"`
ToString string `json:"toString,omitempty"`
}
type JiraApiChangelogsResponse ¶
type JiraApiChangelogsResponse struct {
JiraPagination
Values []JiraApiChangeLog `json:"values,omitempty"`
}
type JiraApiClient ¶
func GetJiraApiClient ¶
func GetJiraApiClient() *JiraApiClient
func (*JiraApiClient) FetchPages ¶
func (jiraApiClient *JiraApiClient) FetchPages(scheduler *utils.WorkerScheduler, path string, query *url.Values, handler JiraPaginationHandler) error
type JiraApiIssue ¶
type JiraApiIssuesResponse ¶
type JiraApiIssuesResponse struct {
JiraPagination
Issues []JiraApiIssue `json:"issues"`
}
type JiraApiLocation ¶
type JiraPagination ¶
type JiraPaginationHandler ¶
Click to show internal directories.
Click to hide internal directories.