diff --git a/app/config/schema/schema.json b/app/config/schema/schema.json index f01e0e9d..8e1f52ca 100644 --- a/app/config/schema/schema.json +++ b/app/config/schema/schema.json @@ -621,6 +621,7 @@ "id": {}, "co_id": {}, "name": {}, + "description": { "size": 256 }, "status": {}, "sor_label": {}, "authz_type": { "type": "string", "size": 2 }, diff --git a/app/templates/EnrollmentFlows/columns.inc b/app/templates/EnrollmentFlows/columns.inc index 7f160491..0f061109 100644 --- a/app/templates/EnrollmentFlows/columns.inc +++ b/app/templates/EnrollmentFlows/columns.inc @@ -39,6 +39,9 @@ $indexColumns = [ 'type' => 'enum', 'class' => 'EnrollmentAuthzEnum', 'sortable' => true + ], + 'description' => [ + 'sortable' => true ] ]; diff --git a/app/templates/EnrollmentFlows/fields.inc b/app/templates/EnrollmentFlows/fields.inc index df72eb6b..faef3b8d 100644 --- a/app/templates/EnrollmentFlows/fields.inc +++ b/app/templates/EnrollmentFlows/fields.inc @@ -57,6 +57,7 @@ declare(strict_types = 1); if($vv_action == 'add' || $vv_action == 'edit') { foreach ( ['name', + 'description', 'status', // 'sor_label', ] as $field) {