Make a few adjustments to match changes to the API:

* Updates the Makefile so make test works (removed js-lint action for now)
* Addresses some outstanding linting/formatting
* Updates dependencies and pulls in latest changes from main

Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
This commit is contained in:
Carlo Costino
2025-04-16 17:45:32 -04:00
parent 54d8996e2a
commit a3eeeb2b2c
4 changed files with 303 additions and 464 deletions

View File

@@ -25,7 +25,9 @@ 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):
if "/jobs" in request.path and not current_app.config.get(
"FEATURE_SOCKET_ENABLED", False
):
abort(404)
pass