Skip to content

Commit fdad4af

Browse files
committed
Add retention tiers to config
1 parent fb58fc3 commit fdad4af

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

config/app.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,5 +306,13 @@
306306
// When true, shows the Cases Retention section on process configuration
307307
'case_retention_policy_enabled' => filter_var(env('CASE_RETENTION_POLICY_ENABLED', false), FILTER_VALIDATE_BOOLEAN),
308308

309+
// Controls which retention periods are available in the UI for the current tier.
310+
'case_retention_tier' => env('CASE_RETENTION_TIER', '1'),
311+
'case_retention_tier_options' => [
312+
'1' => ['six_months', 'one_year'],
313+
'2' => ['six_months', 'one_year', 'three_years'],
314+
'3' => ['six_months', 'one_year', 'three_years', 'five_years'],
315+
],
316+
309317
'resources_core_path' => base_path('resources-core'),
310318
];

0 commit comments

Comments
 (0)