Lines 421-427
export default {
Link Here
|
421 |
libraries => { |
421 |
libraries => { |
422 |
libraries.unshift({ |
422 |
libraries.unshift({ |
423 |
library_id: "*", |
423 |
library_id: "*", |
424 |
name: "All libraries", |
424 |
name: "Default rule for all libraries", |
425 |
}); |
425 |
}); |
426 |
this.libraries = libraries; |
426 |
this.libraries = libraries; |
427 |
}, |
427 |
}, |
Lines 434-440
export default {
Link Here
|
434 |
categories => { |
434 |
categories => { |
435 |
categories.unshift({ |
435 |
categories.unshift({ |
436 |
patron_category_id: "*", |
436 |
patron_category_id: "*", |
437 |
name: "All categories", |
437 |
name: "Default rule for all categories", |
438 |
}); |
438 |
}); |
439 |
this.categories = categories; |
439 |
this.categories = categories; |
440 |
}, |
440 |
}, |
Lines 447-453
export default {
Link Here
|
447 |
types => { |
447 |
types => { |
448 |
types.unshift({ |
448 |
types.unshift({ |
449 |
item_type_id: "*", |
449 |
item_type_id: "*", |
450 |
description: "All item types", |
450 |
description: "Default rule for all item types", |
451 |
}); |
451 |
}); |
452 |
this.itemTypes = types; |
452 |
this.itemTypes = types; |
453 |
}, |
453 |
}, |