Updated the default log view limit to 1000 item.

This commit is contained in:
Abdulmhsen B. A. A
2024-05-02 18:20:01 +03:00
parent 63d760127c
commit 2fe54a7cba

View File

@@ -21,7 +21,7 @@ use Symfony\Component\Process\Process;
final class Index final class Index
{ {
public const string URL = '%{api.prefix}/logs'; public const string URL = '%{api.prefix}/logs';
private const int DEFAULT_LIMIT = 100; private const int DEFAULT_LIMIT = 1000;
private int $counter = 1; private int $counter = 1;
#[Get(self::URL . '[/]', name: 'logs.list')] #[Get(self::URL . '[/]', name: 'logs.list')]