From d2301e52a441de7ef41223ed635f4bd2eaa42112 Mon Sep 17 00:00:00 2001 From: J Lucas <30297264+Laserbeam31@users.noreply.github.com> Date: Mon, 12 Jan 2026 14:43:14 +0000 Subject: [PATCH 1/4] Update bts.php --- config/bts.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/bts.php b/config/bts.php index 2dc4adb8..0de2d2f5 100755 --- a/config/bts.php +++ b/config/bts.php @@ -20,6 +20,7 @@ 'network_management' => 'https://librenms.bts-crew.com', 'skills_matrix' => 'https://docs.google.com/spreadsheets/d/1Xq3JVDMIE52_0iWZiymMsDvMINEfz0p0G0x2WdImSHo', 'telephony' => 'https://telephony.bts-crew.com', + 'nextcloud' => 'https://nextcloud.bts-crew.com' ], // Emails From 5b94f0b4b6a4d7b91ec3f72eea383e93921066ac Mon Sep 17 00:00:00 2001 From: J Lucas <30297264+Laserbeam31@users.noreply.github.com> Date: Mon, 12 Jan 2026 14:50:02 +0000 Subject: [PATCH 2/4] Update MainMenuComposer.php --- app/View/Composers/MainMenuComposer.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/View/Composers/MainMenuComposer.php b/app/View/Composers/MainMenuComposer.php index a3fe847a..4aa391ea 100644 --- a/app/View/Composers/MainMenuComposer.php +++ b/app/View/Composers/MainMenuComposer.php @@ -116,6 +116,9 @@ private function addMembersMenu(Builder $menu) // Wiki $membersMenu->add('Wiki', config('bts.links.wiki')); + // Nextcloud + $membersMenu->add('Network Drive', config('bts.links.nextcloud')); + // Equipment $equipMenu = $membersMenu->add('Equipment', '#')->attr('class', 'dropdown equipment'); $equipMenu->add('Asset register', route('equipment.assets')); From 1999dceec22b090004f3da3726456ed908a55230 Mon Sep 17 00:00:00 2001 From: J Lucas <30297264+Laserbeam31@users.noreply.github.com> Date: Mon, 12 Jan 2026 14:57:40 +0000 Subject: [PATCH 3/4] Update bts.php --- config/bts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/bts.php b/config/bts.php index 0de2d2f5..1f70d1bd 100755 --- a/config/bts.php +++ b/config/bts.php @@ -20,7 +20,7 @@ 'network_management' => 'https://librenms.bts-crew.com', 'skills_matrix' => 'https://docs.google.com/spreadsheets/d/1Xq3JVDMIE52_0iWZiymMsDvMINEfz0p0G0x2WdImSHo', 'telephony' => 'https://telephony.bts-crew.com', - 'nextcloud' => 'https://nextcloud.bts-crew.com' + 'nextcloud' => 'https://nextcloud.bts-crew.com', ], // Emails From 608547e22d0f9a887efafa33a5d3729a36307e6a Mon Sep 17 00:00:00 2001 From: Ben Jones Date: Mon, 26 Jan 2026 23:30:38 +0000 Subject: [PATCH 4/4] chore: update phpstan baseline --- phpstan-baseline.neon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon index 462364cc..72cc14c4 100644 --- a/phpstan-baseline.neon +++ b/phpstan-baseline.neon @@ -6777,7 +6777,7 @@ parameters: - message: '#^Cannot call method add\(\) on array\|Lavary\\Menu\\Item\|string\.$#' identifier: method.nonObject - count: 31 + count: 32 path: app/View/Composers/MainMenuComposer.php -