Advertisement
Dyrcona

routing table fieldoptions patch

Jan 19th, 2024
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. diff --git a/Open-ILS/src/eg2/src/app/staff/admin/server/routing.module.ts b/Open-ILS/src/eg2/src/app/staff/admin/server/routing.module.ts
  2. index dc5ca4f416..3e3b92cd2b 100644
  3. --- a/Open-ILS/src/eg2/src/app/staff/admin/server/routing.module.ts
  4. +++ b/Open-ILS/src/eg2/src/app/staff/admin/server/routing.module.ts
  5. @@ -51,6 +51,14 @@ const routes: Routes = [{
  6. table: 'rule_recurring_fine',
  7. fieldOrder: 'name,low,normal,high,recurrence_interval,grace_period'
  8. }]
  9. +}, {
  10. + path: 'config/rule_circ_duration',
  11. + component: BasicAdminPageComponent,
  12. + data: [{
  13. + schema: 'config',
  14. + table: 'rule_circ_duration',
  15. + fieldOptions: {max_renewals:{isRequired:true,min:0},max_auto_renewals:{isRequired:true,min:0}}
  16. + }]
  17. }, {
  18. path: 'config/z3950_source',
  19. component: BasicAdminPageComponent,
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement