Ignore:
Timestamp:
07/28/12 09:20:21 (12 years ago)
Author:
nanardon
Message:

Use a generic filter to list objects

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LATMOS-Accounts-Web/lib/LATMOS/Accounts/Web.pm

    r929 r1081  
    3131 
    3232__PACKAGE__->config( 
     33    objects => { 
     34        user => { 
     35            quick_search => [ qw(cn sn givenName) ], 
     36            list => [ qw(sn givenName mail) ], 
     37        }, 
     38        group => { 
     39            quick_search => [ qw(cn description) ], 
     40            list => [ qw(description) ], 
     41        }, 
     42        nethost => { 
     43            quick_search => [ qw(cn description ip cname otherName) ], 
     44            list => [ qw(description owner) ], 
     45        }, 
     46        netzone => { 
     47            quick_search => [ qw(cn description ip) ], 
     48            list => [ qw(type description) ], 
     49        }, 
     50        site => { 
     51            quick_search => [ qw(cn l) ], 
     52            list => [ qw(l) ], 
     53        }, 
     54        aliases => { 
     55            quick_search => [ qw(name) ], 
     56            list => [ qw() ], 
     57        }, 
     58 
     59    }, 
    3360    'attrs' => { 
    3461        'physicalDeliveryOfficeName' => { 
Note: See TracChangeset for help on using the changeset viewer.