-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[backend/frontend] Adapt backend on new agent logic #2133
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## release/1.11.0 #2133 +/- ##
====================================================
+ Coverage 35.12% 35.37% +0.25%
- Complexity 1418 1424 +6
====================================================
Files 536 537 +1
Lines 16184 16272 +88
Branches 1036 1043 +7
====================================================
+ Hits 5684 5756 +72
- Misses 10206 10220 +14
- Partials 294 296 +2 ☔ View full report in Codecov by Sentry. |
openbas-model/src/main/java/io/openbas/database/repository/EndpointRepository.java
Outdated
Show resolved
Hide resolved
openbas-model/src/main/java/io/openbas/database/repository/EndpointRepository.java
Outdated
Show resolved
Hide resolved
openbas-api/src/main/java/io/openbas/executors/caldera/service/CalderaExecutorService.java
Outdated
Show resolved
Hide resolved
openbas-framework/src/main/java/io/openbas/executors/tanium/service/TaniumExecutorService.java
Outdated
Show resolved
Hide resolved
openbas-framework/src/main/java/io/openbas/asset/AssetGroupService.java
Outdated
Show resolved
Hide resolved
openbas-framework/src/main/java/io/openbas/asset/AssetGroupService.java
Outdated
Show resolved
Hide resolved
openbas-framework/src/main/java/io/openbas/asset/AgentService.java
Outdated
Show resolved
Hide resolved
Thanks for your feedback and help ! Ready for a second review ! |
|
||
export interface EndpointHelper { | ||
getEndpoints: () => Endpoint[]; | ||
getEndpointsMap: () => Record<string, Endpoint>; | ||
} | ||
|
||
export interface SecurityPlatformHelper { | ||
getSecurityPlatforms: () => SecurityPlatformStore[]; | ||
getSecurityPlatformsMap: () => Record<string, SecurityPlatformStore>; | ||
getSecurityPlatforms: () => SecurityPlatform[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great !
Proposed changes
Related issues
Checklist