-
-
Notifications
You must be signed in to change notification settings - Fork 85
Change the default amount of search results
Paul Dee edited this page May 18, 2020
·
1 revision
In a default (Docker assumed) installation of Homer7, the amount of results returned for SIP Call type searches is 200.
To change this:
- Edit your SIP Call search form
- Add the
Query Limit
field to theActive
column - Save the form
- Enter e.g.
1000
in theQuery limit
field - Search
Alternatively
1 - Settings 2 - User settings 3 - find your dashboard and edit the block
...
{
"field_name": "limit",
"hepid": 1,
"name": "1:call:limit",
"selection": "Query Limit",
"type": "string",
"value": ""
},
...
to e.g. for 1000 results
...
{
"field_name": "limit",
"hepid": 1,
"name": "1:call:limit",
"selection": "Query Limit",
"type": "string",
"value": "1000"
},
...