From 4ff87737b555b136e7cd344eb3d14c53c68eb65a Mon Sep 17 00:00:00 2001 From: Cy Rossignol Date: Thu, 13 Aug 2026 09:48:42 -0700 Subject: [PATCH] Disable auto-flag changeset review temporarily Disable review auto-flagging as a temporary workaround. This flags every changeset for review. --- api/main.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/api/main.py b/api/main.py index 65c6aee..44a4cce 100644 --- a/api/main.py +++ b/api/main.py @@ -318,10 +318,11 @@ async def catch_all( ): workspace = await repository.getById(current_user, workspace_id) - if ( - workspace.autoFlagReview - and current_user.effective_role(workspace_id) == "contributor" - ): + # if ( + # workspace.autoFlagReview + # and current_user.effective_role(workspace_id) == "contributor" + # ): + if True: logger.info("Injecting review request tag") body = await request.body() root = ET.fromstring(body)