Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Vincent Mazenod
lemonldap-ng
Commits
1d0a79ba
Commit
1d0a79ba
authored
Sep 27, 2019
by
Christophe Maudoux
🐛
Browse files
Fix returned values (#1954)
parent
fb622fff
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ZimbraPreAuth.pm
View file @
1d0a79ba
...
...
@@ -16,7 +16,7 @@ our $VERSION = '2.0.6';
# Overload main run method
sub
run
{
my
(
$class
,
$req
)
=
@_
;
my
$ret
=
$class
->
Lemonldap::NG::Handler::Main::
run
(
$req
);
my
(
$ret
,
$session
)
=
$class
->
Lemonldap::NG::Handler::Main::
run
(
$req
);
# Continue only if user is authorized
return
$ret
unless
(
$ret
==
$class
->
OK
);
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm
View file @
1d0a79ba
...
...
@@ -3765,7 +3765,7 @@ qr/^(?:(?:(?:(?:(?:(?:[a-zA-Z0-9][-a-zA-Z0-9]*)?[a-zA-Z0-9])[.])*(?:[a-zA-Z][-a-
'
v
'
=>
'
ServiceToken
'
},
{
'
k
'
=>
'
Zimbra
',
'
k
'
=>
'
Zimbra
PreAuth
',
'
v
'
=>
'
ZimbraPreAuth
'
}
],
...
...
lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm
View file @
1d0a79ba
...
...
@@ -1968,7 +1968,7 @@ sub attributes {
{
k
=>
'
OAuth2
',
v
=>
'
OAuth2
'
},
{
k
=>
'
SecureToken
',
v
=>
'
SecureToken
'
},
{
k
=>
'
ServiceToken
',
v
=>
'
ServiceToken
'
},
{
k
=>
'
Zimbra
',
v
=>
'
ZimbraPreAuth
'
},
{
k
=>
'
Zimbra
PreAuth
',
v
=>
'
ZimbraPreAuth
'
},
],
default
=>
'
Main
',
documentation
=>
'
Handler type
',
...
...
lemonldap-ng-manager/site/htdocs/static/js/conftree.js
View file @
1d0a79ba
...
...
@@ -1192,7 +1192,7 @@ function templates(tpl,key) {
"
v
"
:
"
ServiceToken
"
},
{
"
k
"
:
"
Zimbra
"
,
"
k
"
:
"
Zimbra
PreAuth
"
,
"
v
"
:
"
ZimbraPreAuth
"
}
],
...
...
lemonldap-ng-manager/site/htdocs/static/js/conftree.min.js
View file @
1d0a79ba
This diff is collapsed.
Click to expand it.
lemonldap-ng-manager/site/htdocs/static/js/conftree.min.js.map
View file @
1d0a79ba
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment