added new pop columns

This commit is contained in:
Luca Haid
2025-05-13 15:42:24 +02:00
parent 6d4d4ea386
commit e976246ed7
5 changed files with 24 additions and 5 deletions

View File

@@ -32,6 +32,9 @@ class PopController extends mfBaseController
"name" => $pop->name,
"networkArea" => $pop->networks,
"location" => $pop->location,
"state" => $pop->state,
"folder_link" => $pop->folder_link,
"doku_date" => $pop->doku_date,
"vlan" => [
"public" => $pop->vlan_public,
"nat" => $pop->vlan_nat,
@@ -51,6 +54,7 @@ class PopController extends mfBaseController
],
"NETWORKS" => $networks,
"POPS" => $pops,
"IS_ADMIN" => $this->me->is("Admin"),
];
$this->layout()->set("vueViewName", "Pop");