mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 04:29:21 +00:00
26 lines
371 B
JavaScript
26 lines
371 B
JavaScript
/**
|
|
* Settings pages list
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.pages.settings.sectionsList = {
|
|
|
|
/**
|
|
* General settings
|
|
*/
|
|
general: {
|
|
title: "General",
|
|
handler: "ComunicWeb.pages.settings.sections.general.open",
|
|
},
|
|
|
|
/**
|
|
* Security settings
|
|
*/
|
|
security: {
|
|
title: "Security",
|
|
handler: "ComunicWeb.pages.settings.sections.security.open",
|
|
},
|
|
|
|
|
|
} |