diff --git a/ee/tabby-webserver/src/routes/mod.rs b/ee/tabby-webserver/src/routes/mod.rs index c5af006dc581..0c0402ec9355 100644 --- a/ee/tabby-webserver/src/routes/mod.rs +++ b/ee/tabby-webserver/src/routes/mod.rs @@ -69,7 +69,10 @@ pub fn create( .route("/avatar/:id", routing::get(avatar).with_state(ctx.auth())) .nest("/oauth", oauth::routes(ctx.auth())); - let ui = ui.route("/graphiql", routing::get(graphiql("/graphql", None))); + let ui = ui.route( + "/graphiql", + routing::get(graphiql("/graphql", "/subscriptions")), + ); let ui = ui.fallback(ui::handler);