-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Implemented support to perform actions on the rules page in bulk and removed the unused code(#24 updated)
- Loading branch information
Showing
12 changed files
with
538 additions
and
488 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
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,16 +1,6 @@ | ||
import { Group, RouteFilter } from "@/types"; | ||
|
||
export default interface OrderRoutingState { | ||
groups: Array<any>; // runs | ||
routes: Array<any>; | ||
rules: Array<any>; | ||
rules: any; | ||
currentGroup: any; | ||
currentRoute: any; | ||
currentRouteFilters: { | ||
[key: string]: { // conditionTypeEnumId as key | ||
[key: string]: RouteFilter // enumCode/fieldName as key | ||
} | ||
}; | ||
ruleConditions: {}; | ||
ruleActions: {} | ||
} |
Oops, something went wrong.