feat: add agent skills to review PR (#320)

This commit is contained in:
Abhishek 2026-05-19 17:02:26 +05:30 committed by GitHub
parent 8778bb453e
commit 151bf77e40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 331 additions and 29 deletions

View file

@ -21,7 +21,7 @@ router = APIRouter(prefix="/integration")
class IntegrationResponse:
id: int
integration_id: str
organisation_id: int
organization_id: int
created_by: Optional[int]
provider: str
is_active: bool
@ -71,7 +71,7 @@ def build_integration_response(integration) -> IntegrationResponse:
return IntegrationResponse(
id=integration.id,
integration_id=integration.integration_id,
organisation_id=integration.organisation_id,
organization_id=integration.organization_id,
created_by=integration.created_by,
provider=integration.provider,
is_active=integration.is_active,