]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/javascript/backend/circ/circ_groups.js
Merge branch 'master' of git.evergreen-ils.org:Evergreen-DocBook into doc_consolidati...
[Evergreen.git] / Open-ILS / src / javascript / backend / circ / circ_groups.js
1 /* ---------------------------------------------------------------------
2         Set up the limits for the various profiles (aka permission groups).
3         Values of -1 mean there is no limit 
4
5         maxItemsOut                     - the maximum number of items the user can have out
6         fineThreshold           - the fine threshold. 
7         overdueThreshold        - the overdue items threshold.
8         maxHolds                                - The maximum number of holds the user can have
9
10         A user exceeds the fineThreshold and/or overdueThreshold if they are 
11         equal to or exceed the threshold
12         --------------------------------------------------------------------- */
13
14 var GROUP_CONFIG = {
15         'Patron' : {
16                 maxItemsOut         : 50,
17                 fineThreshold       : 10,
18                 overdueThreshold    : 10,
19                 maxHolds            : -1
20         },
21 }