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