66 lines
1.3 KiB
Perl
66 lines
1.3 KiB
Perl
package WebGUI::Help::AuthWebGUI;
|
|
|
|
our $HELP = {
|
|
'webgui authentication display account template' => {
|
|
title => 'display account template title',
|
|
body => 'display account template body',
|
|
fields => [
|
|
],
|
|
related => [
|
|
{
|
|
tag => 'wobject template',
|
|
namespace => 'Asset_Wobject'
|
|
}
|
|
]
|
|
},
|
|
'webgui authentication login template' => {
|
|
title => 'login template title',
|
|
body => 'login template body',
|
|
fields => [
|
|
],
|
|
related => [
|
|
{
|
|
tag => 'wobject template',
|
|
namespace => 'Asset_Wobject'
|
|
}
|
|
]
|
|
},
|
|
'webgui authentication anonymous registration template' => {
|
|
title => 'anon reg template title',
|
|
body => 'anon reg template body',
|
|
fields => [
|
|
],
|
|
related => [
|
|
{
|
|
tag => 'wobject template',
|
|
namespace => 'Asset_Wobject'
|
|
}
|
|
]
|
|
},
|
|
'webgui authentication password recovery template' => {
|
|
title => 'recovery template title',
|
|
body => 'recovery template body',
|
|
fields => [
|
|
],
|
|
related => [
|
|
{
|
|
tag => 'wobject template',
|
|
namespace => 'Asset_Wobject'
|
|
}
|
|
]
|
|
},
|
|
'webgui authentication password expiration template' => {
|
|
title => 'expired template title',
|
|
body => 'expired template body',
|
|
fields => [
|
|
],
|
|
related => [
|
|
{
|
|
tag => 'wobject template',
|
|
namespace => 'Asset_Wobject'
|
|
}
|
|
]
|
|
},
|
|
};
|
|
|
|
1;
|