Skip to content
Merged
Show file tree
Hide file tree
Changes from 40 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
4855a01
add new connected repos endpoint
srest2021 May 8, 2026
9d3ad42
:hammer_and_wrench: Sync API Urls to TypeScript
getsantry[bot] May 8, 2026
023e2d6
move helpers to uitls and add tests
srest2021 May 8, 2026
0c3e1bb
fix bugs and add endpoint tests
srest2021 May 8, 2026
72243e7
cleaning up
srest2021 May 8, 2026
217e3bf
resolve merge conflicts
srest2021 May 19, 2026
9ffb9e8
:hammer_and_wrench: Sync API Urls to TypeScript
getsantry[bot] May 19, 2026
65cb9ce
fix tests, link projectrepository, remove unnecessary queries
srest2021 May 19, 2026
580e22a
fix comments
srest2021 May 19, 2026
55a41ed
fix tests
srest2021 May 19, 2026
5196d7a
fix mypy
srest2021 May 19, 2026
9a769e4
rename file
srest2021 May 20, 2026
251463a
bug fixes and cleaning up
srest2021 May 20, 2026
63ad438
reorder endpoints
srest2021 May 20, 2026
a680213
fix missing arg
srest2021 May 20, 2026
f0b3791
feat(seer): Add CRUD helpers for Seer project repos
srest2021 May 20, 2026
69e411d
fix validation
srest2021 May 20, 2026
b778898
more test coverage
srest2021 May 20, 2026
e0e8350
remove validation fn from this pr
srest2021 May 20, 2026
4bc027b
fix get_or_create
srest2021 May 20, 2026
6d7bb23
remove project lock for replace-all
srest2021 May 20, 2026
d1f2493
resolve merge conflicts
srest2021 May 20, 2026
279d7b8
require repo id when creating
srest2021 May 20, 2026
20ea2df
Merge branch 'srest2021/CW-1286-utils' into srest2021/CW-1286
srest2021 May 20, 2026
47572b0
resolve merge conflicts, split to details-only endpoint
srest2021 May 20, 2026
177eaf4
remove update fn to inline it in the endpoint
srest2021 May 20, 2026
9784314
Merge branch 'srest2021/CW-1286-utils' into srest2021/CW-1286
srest2021 May 20, 2026
5462ec8
inline helper and move tests
srest2021 May 20, 2026
c8e4a29
bulk repos endpoint
srest2021 May 20, 2026
1d89266
ref base queryset
srest2021 May 20, 2026
b386f31
Merge branch 'srest2021/CW-1286' into srest2021/CW-1286-bulk
srest2021 May 20, 2026
6dfb8dd
ref base queryset
srest2021 May 20, 2026
9357f43
Merge branch 'srest2021/CW-1286' into srest2021/CW-1286-bulk
srest2021 May 20, 2026
7366ff8
use base queryset
srest2021 May 20, 2026
686eeec
Merge branch 'master' into srest2021/CW-1286
srest2021 May 20, 2026
2e93fc6
ensure at least one update field provided
srest2021 May 20, 2026
4e49993
add branch override id to response
srest2021 May 20, 2026
662db71
add org id to project repo response
srest2021 May 20, 2026
4d73e36
only save projectrepo if something changed
srest2021 May 20, 2026
10ddef3
Merge branch 'srest2021/CW-1286' into srest2021/CW-1286-bulk
srest2021 May 20, 2026
ab0c1dd
more test coverage
srest2021 May 20, 2026
06766c7
Accidentally added test script
srest2021 May 20, 2026
3f9354a
simplify unsupported provider tests
srest2021 May 20, 2026
6b1b6cf
resolve merge conflicts
srest2021 May 20, 2026
5785d94
switch to project-scoped endpoint
srest2021 May 21, 2026
e7186a6
:hammer_and_wrench: Sync API Urls to TypeScript
getsantry[bot] May 21, 2026
0cb1eaf
rename endpoint
srest2021 May 21, 2026
67dd8a8
switch to project endpoint and resolve conflicts
srest2021 May 21, 2026
fc81ec8
:hammer_and_wrench: Sync API Urls to TypeScript
getsantry[bot] May 21, 2026
6c08ae9
add cross-project test coverage
srest2021 May 21, 2026
5d6794c
more test coverage
srest2021 May 21, 2026
749c371
Merge remote-tracking branch 'origin/srest2021/CW-1286-bulk' into sre…
srest2021 May 21, 2026
635a636
resolve merge conflicts
srest2021 May 21, 2026
a02f7f6
clean up tests
srest2021 May 21, 2026
4c0ddc9
remove in/not_in support from name
srest2021 May 21, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/sentry/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,10 @@
OrganizationSeerAgentUpdateEndpoint,
)
from sentry.seer.endpoints.organization_seer_onboarding_check import OrganizationSeerOnboardingCheck
from sentry.seer.endpoints.organization_seer_project_repos import (
OrganizationSeerProjectRepoDetailsEndpoint,
OrganizationSeerProjectReposEndpoint,
)
from sentry.seer.endpoints.organization_seer_rpc import OrganizationSeerRpcEndpoint
from sentry.seer.endpoints.organization_seer_setup_check import OrganizationSeerSetupCheckEndpoint
from sentry.seer.endpoints.organization_seer_workflows import OrganizationSeerWorkflowsEndpoint
Expand Down Expand Up @@ -2449,6 +2453,16 @@ def create_group_urls(name_prefix: str) -> list[URLPattern | URLResolver]:
OrganizationSeerOnboardingCheck.as_view(),
name="sentry-api-0-organization-seer-onboarding-check",
),
re_path(
r"^(?P<organization_id_or_slug>[^/]+)/seer/projects/(?P<project_id>\d+)/repos/$",
OrganizationSeerProjectReposEndpoint.as_view(),
name="sentry-api-0-organization-seer-project-repos",
),
re_path(
r"^(?P<organization_id_or_slug>[^/]+)/seer/projects/(?P<project_id>\d+)/repos/(?P<repo_id>\d+)/$",
OrganizationSeerProjectRepoDetailsEndpoint.as_view(),
name="sentry-api-0-organization-seer-project-repo-details",
),
re_path(
r"^(?P<organization_id_or_slug>[^/]+)/autofix/automation-settings/$",
OrganizationAutofixAutomationSettingsEndpoint.as_view(),
Expand Down
Loading
Loading