From 8dfa881f260a4bb41656c1470e165a5c9d153a95 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Thu, 17 Apr 2025 11:48:55 -0700 Subject: [PATCH] fix test --- app/main/views/index.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/main/views/index.py b/app/main/views/index.py index 663a724bd..ca7858a4e 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -25,10 +25,8 @@ from app.utils.user import user_is_logged_in def check_feature_flags(): # Placeholder for future feature flag checks # Example: - if "/jobs" in request.path and not current_app.config.get( - "FEATURE_SOCKET_ENABLED", False - ): - abort(404) + # if request.path.startswith("/some-feature") and not current_app.config.get("FEATURE_SOME_FEATURE_ENABLED", False): + # abort(404) pass