-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add filters in list format (#1835)
- Loading branch information
1 parent
da648d9
commit 5c485a8
Showing
14 changed files
with
95 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
11 changes: 11 additions & 0 deletions
11
src/services/real-time-metrics-services/search-action-service.js
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export const searchActionService = () => { | ||
return [ | ||
{ label: 'Allow', value: 'allow' }, | ||
{ label: 'Custom HTML', value: 'custom html' }, | ||
{ label: 'Deny ', value: 'deny' }, | ||
{ label: 'Drop', value: 'drop' }, | ||
{ label: 'Hold Connection', value: 'hold connection' }, | ||
{ label: 'Random Delay', value: 'random delay' }, | ||
{ label: 'Redirect', value: 'redirect' }, | ||
] | ||
} |
6 changes: 6 additions & 0 deletions
6
src/services/real-time-metrics-services/search-challenge-solved-service.js
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export const searchChallengeSolvedService = () => { | ||
return [ | ||
{ label: 'Solved', value: true }, | ||
{ label: 'Not Solved', value: false } | ||
] | ||
} |
6 changes: 4 additions & 2 deletions
6
src/services/real-time-metrics-services/search-classified-service.js
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
export const searchClassifiedService = () => { | ||
return [ | ||
{ label: 'Solved', value: true }, | ||
{ label: 'Not Solved', value: false } | ||
{ label: 'Legitimate', value: 'legitimate' }, | ||
{ label: 'Good Bot', value: 'good bot' }, | ||
{ label: 'Bad Bot ', value: 'bad bot' }, | ||
{ label: 'Under Evaluation', value: 'under evaluation' }, | ||
] | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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