chg: [menu] Added some missing elements to the menues (encryption keys and instances)

remotes/origin/main
iglocska 2020-06-21 21:36:15 +02:00
parent b4fe51966d
commit 0a100e3dfd
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 30 additions and 1 deletions

View File

@ -78,6 +78,26 @@ class AppTable extends Table
'skipTopMenu' => 1
]
]
],
'EncryptionKeys' => [
'label' => __('Encryption keys'),
'url' => '/encryptionKeys/index',
'children' => [
'index' => [
'url' => '/encryptionKeys/index',
'label' => __('List encryption keys')
],
'add' => [
'url' => '/encryptionKeys/add',
'label' => __('Add encryption key')
],
'edit' => [
'url' => '/encryptionKeys/edit/{{id}}',
'label' => __('Edit organisation'),
'actions' => ['edit'],
'skipTopMenu' => 1
]
]
]
],
'Administration' => [
@ -162,9 +182,18 @@ class AppTable extends Table
'skipTopMenu' => 1
]
]
],
'Instance' => [
__('Instance'),
'url' => '/instance/home',
'children' => [
'home' => [
'url' => '/instance/home',
'label' => __('Home')
]
]
]
]
];
}
}