This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Claude Code hook for running linter commands after files are modified. | |
| Configure the LINTER_CONFIG dictionary below to map glob patterns to linting commands. | |
| """ | |
| # ruff: noqa: T201 | |
| import fnmatch | |
| import json | |
| import subprocess |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cloc --exclude-dir=node_modules,migrations,build,.mypy_cache --fullpath --not-match-d=server/app/static --not-match-f=package-lock.json --exclude-ext=csv,svg . | |
| echo " | |
| ---- TESTS ONLY (INLCUDED IN ABOVE) ---- | |
| " | |
| cloc --exclude-dir=node_modules,migrations,build,.mypy_cache --fullpath --not-match-d=server/app/static --match-f="(tests/)|(test_[^/]*.py)|(\.test\.ts)|(\.cy\.ts)" . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/client/src/services/files.ts b/client/src/services/files.ts | |
| index 416a1710b..00dc54f84 100644 | |
| --- a/client/src/services/files.ts | |
| +++ b/client/src/services/files.ts | |
| @@ -2,7 +2,7 @@ import { callAPI } from "services/util"; | |
| import { getAPIAuthentication } from "services/auth"; | |
| import PQueue from "p-queue"; | |
| -const uploadQueue = new PQueue({ concurrency: 4 }); | |
| +export const uploadQueue = new PQueue({ concurrency: 4 }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/client/src/AppRoutes.tsx b/client/src/AppRoutes.tsx | |
| index 351779730..6f56d9c08 100644 | |
| --- a/client/src/AppRoutes.tsx | |
| +++ b/client/src/AppRoutes.tsx | |
| @@ -204,9 +204,11 @@ const ContentRoutes = () => ( | |
| </AuthenticatedRoute> | |
| } | |
| /> | |
| - {PropertyDetailRoute(RouteURLs.VIEW_PROPERTY)} | |
| - {PropertyDetailRoute(RouteURLs.VIEW_PROPERTY_TAB)} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/server/app_util/tests/data.py b/server/app_util/tests/data.py | |
| index 7d8c03ebd..bd868f291 100644 | |
| --- a/server/app_util/tests/data.py | |
| +++ b/server/app_util/tests/data.py | |
| @@ -173,6 +173,11 @@ def utc(dt: datetime): | |
| return dt.astimezone(pytz.utc) | |
| +def utc_date(dt: datetime): | |
| + """Convert a timezone-aware datetime to UTC and then return the date only. Test helper.""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Dict, Union, List, Optional | |
| from app_util.tests.base import BaseTestCase | |
| from app_util.tests.util import send_request | |
| class MockApiClient: | |
| """A mock API client that returns a summary of the request made in its JSON response.""" | |
| def get(self, url: str, data: dict, **headers): | |
| return MockApiClient.Response({"method": "get", "url": url, "data": data, "headers": headers}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Dict, Union, List, Optional | |
| from app_util.tests.base import BaseTestCase | |
| from app_util.tests.util import send_request | |
| class MockApiClient: | |
| """A mock API client that returns a summary of the request made in its JSON response""" | |
| def get(self, url: str, data: dict, **headers): | |
| return MockApiClient.Response({"method": "get", "url": url, "data": data, "headers": headers}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/server/integrations/models.py b/server/integrations/models.py | |
| index 56dfbcbc1..e837b237a 100644 | |
| --- a/server/integrations/models.py | |
| +++ b/server/integrations/models.py | |
| @@ -43,7 +43,7 @@ class Integration(models.Model): | |
| class Meta: | |
| ordering = ["organization", "type"] | |
| - unique_together = [["organization", "type", "domain"]] | |
| + unique_together = [["organization", "type", "domain", "owner"]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/server/simpro/api/auth.py b/server/simpro/api/auth.py | |
| index 76b12354..7b031d4d 100644 | |
| --- a/server/simpro/api/auth.py | |
| +++ b/server/simpro/api/auth.py | |
| @@ -80,6 +80,9 @@ def save_user_auth(user: User, organization: Organization, build_domain: str, ac | |
| class IsValidSimproRequest(BasePermission): | |
| def has_permission(self, request: Request, view: View): | |
| + # Fetch this before getting request data, otherwise it fails | |
| + body = request._request.body |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/server/facilities/models/assets.py b/server/facilities/models/assets.py | |
| index 4f05dfec..f982e579 100644 | |
| --- a/server/facilities/models/assets.py | |
| +++ b/server/facilities/models/assets.py | |
| @@ -26,9 +26,9 @@ class AssetEstimatedAge(Enum): | |
| GREATER_THAN_TWENTY = '20+ years' | |
| class AssetDuplicateTaskMode(Enum): | |
| - link = 'link' | |
| - duplicate = 'duplicate' |
NewerOlder