Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 6e9e444

Browse files
Update
1 parent eec4c5e commit 6e9e444

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

graphql_api/types/owner/owner.graphql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ type Owner {
4040
aiFeaturesEnabled: Boolean!
4141
aiEnabledRepos: [String]
4242
aiEnabledRepos2(
43-
filters: RepositorySetFilters
4443
ordering: RepositoryOrdering
4544
orderingDirection: OrderingDirection
4645
first: Int

graphql_api/types/owner/owner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -392,9 +392,9 @@ def resolve_ai_enabled_repos2(
392392
ordering_direction: Optional[OrderingDirection] = OrderingDirection.ASC,
393393
**kwargs: Any,
394394
) -> Coroutine[Any, Any, Connection]:
395-
ai_features_app_install = GithubAppInstallation.objects.filter(
396-
app_id=AI_FEATURES_GH_APP_ID, owner=owner
397-
).first()
395+
# ai_features_app_install = GithubAppInstallation.objects.filter(
396+
# app_id=AI_FEATURES_GH_APP_ID, owner=owner
397+
# ).first()
398398

399399
# if not ai_features_app_install:
400400
# return None

0 commit comments

Comments
 (0)