mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Adds user script category ids
This commit is contained in:
parent
8575700d40
commit
09c33b57f7
1 changed files with 5 additions and 0 deletions
|
|
@ -88,26 +88,31 @@ local available_subdirs = {
|
|||
-- User scripts category consts
|
||||
user_scripts.script_categories = {
|
||||
other = {
|
||||
id = 0,
|
||||
icon = "fas fa-scroll",
|
||||
i18n_title = "user_scripts.category_other",
|
||||
i18n_descr = "user_scripts.category_other_descr",
|
||||
},
|
||||
security = {
|
||||
id = 1,
|
||||
icon = "fas fa-shield-alt",
|
||||
i18n_title = "user_scripts.category_security",
|
||||
i18n_descr = "user_scripts.category_security_descr",
|
||||
},
|
||||
internals = {
|
||||
id = 2,
|
||||
icon = "fas fa-wrench",
|
||||
i18n_title = "user_scripts.category_internals",
|
||||
i18n_descr = "user_scripts.category_internals_descr",
|
||||
},
|
||||
network = {
|
||||
id = 3,
|
||||
icon = "fas fa-network-wired",
|
||||
i18n_title = "user_scripts.category_network",
|
||||
i18n_descr = "user_scripts.category_network_descr",
|
||||
},
|
||||
system = {
|
||||
id = 4,
|
||||
icon = "fas fa-server",
|
||||
i18n_title = "user_scripts.category_system",
|
||||
i18n_descr = "user_scripts.category_system_descr",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue