Skip to content

Commit 036af7f

Browse files
committed
feat: add integration_id to list organization repositories params
1 parent 954549e commit 036af7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sentry/organization_repositories.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ type OrganizationRepository struct {
2626
}
2727

2828
// OrganizationRepositoriesService provides methods for accessing Sentry organization repositories API endpoints.
29-
// Paths: https://github.com/getsentry/sentry/blob/22.7.0/src/sentry/api/urls.py#L1385-L1394
30-
// Endpoints: https://github.com/getsentry/sentry/blob/22.7.0/src/sentry/api/endpoints/organization_repositories.py
31-
// Endpoints: https://github.com/getsentry/sentry/blob/22.7.0/src/sentry/api/endpoints/organization_repository_details.py
29+
// Endpoints: https://github.com/getsentry/sentry/blob/24.10.0/src/sentry/integrations/api/endpoints/organization_repositories.py
30+
// Endpoints: https://github.com/getsentry/sentry/blob/24.10.0/src/sentry/integrations/api/endpoints/organization_repository_details.py
3231
type OrganizationRepositoriesService service
3332

3433
type ListOrganizationRepositoriesParams struct {
3534
ListCursorParams
35+
IntegrationId string `url:"integration_id,omitempty"`
3636
// omitting status defaults to only active.
3737
// sending empty string shows everything, which is a more reasonable default.
3838
Status string `url:"status"`

0 commit comments

Comments
 (0)