Skip to content

Commit 0fbd9b1

Browse files
committed
Add mailhog, nginx_status, status and ping listing
Signed-off-by: Riddhesh Sanghvi <riddheshsanghvi96@gmail.com>
1 parent 7d780cf commit 0fbd9b1

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

templates/index.mustache

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ unset( $services['site_url'] );
7575
$scan = scandir( '{{ee_admin_path}}' );
7676
$tools = array_slice( $scan, 2 );
7777

78+
$tools = array_merge( $tools, [ 'nginx_status', 'ping', 'status' ] );
79+
if( $services['mailhog_enabled'] ) {
80+
$tools[] = 'mailhog';
81+
}
82+
sort( $tools );
83+
7884
$tools = array_diff( $tools, [ 'index.php' ] );
7985

8086
if ( ! $services['cache_nginx_fullpage'] ) {

0 commit comments

Comments
 (0)