mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-20 16:37:48 +02:00
Limit to last 10k the sended sms to see
This commit is contained in:
parent
ad93a7b537
commit
8f7868cae7
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ namespace controllers\publics;
|
|||
*/
|
||||
public function list_json()
|
||||
{
|
||||
$entities = $this->internal_sended->list_for_user($_SESSION['user']['id']);
|
||||
$entities = $this->internal_sended->list_for_user($_SESSION['user']['id'], 10000);
|
||||
foreach ($entities as &$entity)
|
||||
{
|
||||
$entity['destination_formatted'] = \controllers\internals\Tool::phone_link($entity['destination']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue