mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 20:49:21 +00:00
48 lines
776 B
JavaScript
48 lines
776 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",
|
|
},
|
|
|
|
/**
|
|
* Password settings
|
|
*/
|
|
password: {
|
|
title: "Password",
|
|
handler: "ComunicWeb.pages.settings.sections.password.open",
|
|
},
|
|
|
|
/**
|
|
* Account image
|
|
*/
|
|
account_image: {
|
|
title: "Account image",
|
|
handler: "ComunicWeb.pages.settings.sections.accountImage.open"
|
|
},
|
|
|
|
/**
|
|
* Privacy settings
|
|
*/
|
|
privacy: {
|
|
title: "Privacy",
|
|
handler: "ComunicWeb.pages.settings.sections.privacy.open",
|
|
},
|
|
} |