Skip to content

Commit

Permalink
set current todo to nolint
Browse files Browse the repository at this point in the history
  • Loading branch information
bavarianbidi committed Oct 17, 2024
1 parent aa15df6 commit 99827da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/v1beta1/githubendpoint_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ type GitHubEndpointSpec struct {
APIBaseURL string `json:"apiBaseUrl,omitempty"`
UploadBaseURL string `json:"uploadBaseUrl,omitempty"`
BaseURL string `json:"baseUrl,omitempty"`
CACertBundle []byte `json:"caCertBundle,omitempty"` // TODO: This should be a secret reference
//nolint:godox
// TODO: This should be a secret reference
CACertBundle []byte `json:"caCertBundle,omitempty"`
}

// GitHubEndpointStatus defines the observed state of GitHubEndpoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ spec:
baseUrl:
type: string
caCertBundle:
description: 'TODO: This should be a secret reference'
format: byte
type: string
description:
Expand Down

0 comments on commit 99827da

Please sign in to comment.