Skip to content

Commit

Permalink
Add description field to Enrollment Flows (CFM-435) (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
arlen authored Dec 19, 2024
1 parent 7933b3d commit fdc6d9b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/config/schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,7 @@
"id": {},
"co_id": {},
"name": {},
"description": { "size": 256 },
"status": {},
"sor_label": {},
"authz_type": { "type": "string", "size": 2 },
Expand Down
3 changes: 3 additions & 0 deletions app/templates/EnrollmentFlows/columns.inc
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ $indexColumns = [
'type' => 'enum',
'class' => 'EnrollmentAuthzEnum',
'sortable' => true
],
'description' => [
'sortable' => true
]
];

Expand Down
1 change: 1 addition & 0 deletions app/templates/EnrollmentFlows/fields.inc
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ declare(strict_types = 1);
if($vv_action == 'add' || $vv_action == 'edit') {

foreach ( ['name',
'description',
'status',
// 'sor_label',
] as $field) {
Expand Down

0 comments on commit fdc6d9b

Please sign in to comment.