Documentation ¶
Index ¶
- func GetSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
- func ListSources(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
- func PutSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
- func TestConnection(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
- type ApiUserPublicEmailResponse
- type GithubResponse
- type GithubSource
- type PublicEmail
- type TestConnectionRequest
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetSource ¶
func GetSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
GET /plugins/github/sources/:sourceId
func ListSources ¶
func ListSources(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
GET /plugins/github/sources
func PutSource ¶
func PutSource(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
PUT /plugins/github/sources/:sourceId
func TestConnection ¶ added in v0.6.0
func TestConnection(input *core.ApiResourceInput) (*core.ApiResourceOutput, error)
POST /plugins/github/test
Types ¶
type ApiUserPublicEmailResponse ¶ added in v0.6.0
type ApiUserPublicEmailResponse []PublicEmail
type GithubResponse ¶
type GithubResponse struct { Name string ID int GithubSource }
This object conforms to what the frontend currently expects.
func GetSourceFromEnv ¶
func GetSourceFromEnv() (*GithubResponse, error)
type GithubSource ¶
type GithubSource struct { Endpoint string `mapstructure:"GITHUB_ENDPOINT" validate:"required"` Auth string `mapstructure:"GITHUB_AUTH" validate:"required"` Proxy string `mapstructure:"GITHUB_PROXY"` PrType string `mapstructure:"GITHUB_PR_TYPE"` PrComponent string `mapstructure:"GITHUB_PR_COMPONENT"` IssueSeverity string `mapstructure:"GITHUB_ISSUE_SEVERITY"` IssuePriority string `mapstructure:"GITHUB_ISSUE_PRIORITY"` IssueComponent string `mapstructure:"GITHUB_ISSUE_COMPONENT"` IssueTypeBug string `mapstructure:"GITHUB_ISSUE_TYPE_BUG"` IssueTypeIncident string `mapstructure:"GITHUB_ISSUE_TYPE_INCIDENT"` IssueTypeRequirement string `mapstructure:"GITHUB_ISSUE_TYPE_REQUIREMENT"` }
This object conforms to what the frontend currently sends.
type PublicEmail ¶ added in v0.6.0
Using Public Email because it requires authentication, and it is public information anyway. We're not using email information for anything here.
type TestConnectionRequest ¶ added in v0.9.0
Click to show internal directories.
Click to hide internal directories.