Feat v0.7.2 package runners ci gate #56

Merged
xcaliber merged 17 commits from feat/v0.7.2-package-runners-ci-gate into main 2026-04-02 12:10:57 +00:00
Showing only changes of commit e77ab91e17 - Show all commits

View File

@@ -82,7 +82,7 @@ func (s *ConnectionStore) Resolve(ctx context.Context, userID, connType, name st
AND (
(scope = 'personal' AND owner_id = $2)
OR (scope = 'team' AND owner_id IN (
SELECT team_id FROM team_members WHERE user_id = $2
SELECT team_id::text FROM team_members WHERE user_id = $2::uuid
))
OR (scope = 'global')
)`, connCols)
@@ -105,7 +105,7 @@ func (s *ConnectionStore) ResolveAll(ctx context.Context, userID, connType strin
AND (
(scope = 'personal' AND owner_id = $2)
OR (scope = 'team' AND owner_id IN (
SELECT team_id FROM team_members WHERE user_id = $2
SELECT team_id::text FROM team_members WHERE user_id = $2::uuid
))
OR (scope = 'global')
)
@@ -125,7 +125,7 @@ func (s *ConnectionStore) ListAccessible(ctx context.Context, userID string) ([]
AND (
(scope = 'personal' AND owner_id = $1)
OR (scope = 'team' AND owner_id IN (
SELECT team_id FROM team_members WHERE user_id = $1
SELECT team_id::text FROM team_members WHERE user_id = $1::uuid
))
OR (scope = 'global')
)