Skip to content

Add description field to Enrollment Flows (CFM-435) #267

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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