diff --git a/ee/tabby-schema/src/schema/mod.rs b/ee/tabby-schema/src/schema/mod.rs index 99844e5fe1d0..c86910fbc8dd 100644 --- a/ee/tabby-schema/src/schema/mod.rs +++ b/ee/tabby-schema/src/schema/mod.rs @@ -492,7 +492,7 @@ impl Query { } async fn repository_list(ctx: &Context) -> Result> { - check_admin(ctx).await?; + check_user(ctx).await?; ctx.locator.repository().repository_list().await } }