Radiator Server Documentation — v10.33.2
all
All statement for returning reject on first none or reject
Table of Contents
all
NOTE: The until action should be used instead of pipeline directives. The until action provides a readable and flexible way to control pipeline execution.
Standalone action for the all pipeline directive.
Example
all {
backend "VALIDATE_USER";
backend "CHECK_PERMISSIONS";
backend "VERIFY_LICENSE";
}
Migration to until
Use until reject ignore {}
until reject ignore {
backend "VALIDATE_USER";
backend "CHECK_PERMISSIONS";
backend "VERIFY_LICENSE";
}
Table of Contents