Show database size in system info tool

This commit is contained in:
Jan Böhmer 2023-01-16 00:06:14 +01:00
parent 706253ce74
commit 6eb40c6a41
4 changed files with 47 additions and 0 deletions

View file

@ -86,6 +86,7 @@ class ToolsController extends AbstractController
//DB section
'db_type' => $DBInfoHelper->getDatabaseType() ?? 'Unknown',
'db_version' => $DBInfoHelper->getDatabaseVersion() ?? 'Unknown',
'db_size' => $DBInfoHelper->getDatabaseSize(),
]);
}