We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a43fb commit b53af78Copy full SHA for b53af78
src/Common/Policy.Types.ts
@@ -67,8 +67,17 @@ export interface ProcessPluginDataReturnType {
67
}
68
69
export enum ConsequenceAction {
70
+ /**
71
+ * This is used if the policy is enforced immediately.
72
+ */
73
BLOCK = 'BLOCK',
74
75
+ * This is used if the policy will be enforced after a certain timestamp.
76
77
ALLOW_UNTIL_TIME = 'ALLOW_UNTIL_TIME',
78
79
+ * This is used if the policy is not enforced yet (just to show waring).
80
81
ALLOW_FOREVER = 'ALLOW_FOREVER',
82
83
0 commit comments