Ignore:
Timestamp:
01/04/16 19:27:14 (9 years ago)
Author:
nanardon
Message:

Get back fuzzy search config

File:
1 edited

Legend:

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

    r1580 r1586  
    4949        user_employment => 0, 
    5050    } 
     51); 
     52 
     53__PACKAGE__->config( 
     54    objects => { 
     55        user => { 
     56            quick_search => [ qw(cn sn givenName description comment uidNumber) ], 
     57            list => [ qw(sn givenName mail) ], 
     58        }, 
     59        group => { 
     60            quick_search => [ qw(cn description comment gidNumber) ], 
     61            list => [ qw(description) ], 
     62        }, 
     63        nethost => { 
     64            quick_search => [ qw(cn description ip cname otherName macaddr serialNumber) ], 
     65            list => [ qw(description owner) ], 
     66        }, 
     67        netzone => { 
     68            quick_search => [ qw(cn description ip) ], 
     69            list => [ qw(type description) ], 
     70        }, 
     71        site => { 
     72            quick_search => [ qw(cn l) ], 
     73            list => [ qw(l) ], 
     74        }, 
     75        aliases => { 
     76            quick_search => [ qw(name) ], 
     77            list => [ qw() ], 
     78        }, 
     79 
     80    }, 
    5181); 
    5282 
Note: See TracChangeset for help on using the changeset viewer.