1# This Source Code Form is subject to the terms of the Mozilla Public
2# License, v. 2.0. If a copy of the MPL was not distributed with this
3# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4#
5# This Source Code Form is "Incompatible With Secondary Licenses", as
6# defined by the Mozilla Public License, v. 2.0.
7
8package Bugzilla::Config::UserMatch;
9
10use strict;
11
12use Bugzilla::Config::Common;
13
14our $sortkey = 1600;
15
16sub get_param_list {
17  my $class = shift;
18  my @param_list = (
19  {
20   name => 'usemenuforusers',
21   type => 'b',
22   default => '0'
23  },
24
25  {
26   name    => 'ajax_user_autocompletion',
27   type    => 'b',
28   default => '1',
29  },
30
31  {
32   name    => 'maxusermatches',
33   type    => 't',
34   default => '1000',
35   checker => \&check_numeric
36  },
37
38  {
39   name    => 'confirmuniqueusermatch',
40   type    => 'b',
41   default => 1,
42  } );
43  return @param_list;
44}
45
461;
47