Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
lemonldap-ng
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maxime Besson
lemonldap-ng
Commits
0690a0c7
Commit
0690a0c7
authored
Feb 14, 2019
by
Christophe Maudoux
🐛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve code (#1625)
parent
24d5fe7a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/CAS.pm
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/CAS.pm
+2
-2
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm
+2
-2
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenID.pm
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenID.pm
+2
-2
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenIDConnect.pm
...ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenIDConnect.pm
+2
-2
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/SAML.pm
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/SAML.pm
+2
-2
No files found.
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/CAS.pm
View file @
0690a0c7
...
...
@@ -13,7 +13,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_SENDRESPONSE
)
;
our
$VERSION
=
'
2.0.
2
';
our
$VERSION
=
'
2.0.
3
';
extends
'
Lemonldap::NG::Portal::Main::Issuer
',
'
Lemonldap::NG::Portal::Lib::CAS
';
...
...
@@ -23,7 +23,7 @@ extends 'Lemonldap::NG::Portal::Main::Issuer',
use
constant
beforeAuth
=>
'
storeEnvAndCheckGateway
';
use
constant
sessionKind
=>
'
ICAS
';
has
rule
=>
(
is
=>
'
rw
'
,
default
=>
sub
{
{}
}
);
has
rule
=>
(
is
=>
'
rw
'
);
sub
init
{
my
(
$self
)
=
@_
;
...
...
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm
View file @
0690a0c7
...
...
@@ -6,11 +6,11 @@ use URI::Escape;
use
Lemonldap::NG::Common::
FormEncode
;
use
Lemonldap::NG::Portal::Main::
Constants
qw(PE_OK PE_BADURL PE_GET_SERVICE_NOT_ALLOWED)
;
our
$VERSION
=
'
2.0.
2
';
our
$VERSION
=
'
2.0.
3
';
extends
'
Lemonldap::NG::Portal::Main::Issuer
';
has
rule
=>
(
is
=>
'
rw
'
,
default
=>
sub
{
{}
}
);
has
rule
=>
(
is
=>
'
rw
'
);
# INITIALIZATION
...
...
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenID.pm
View file @
0690a0c7
...
...
@@ -16,7 +16,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_OID_SERVICE_NOT_ALLOWED
)
;
our
$VERSION
=
'
2.0.
2
';
our
$VERSION
=
'
2.0.
3
';
extends
'
Lemonldap::NG::Portal::Main::Issuer
';
...
...
@@ -50,7 +50,7 @@ has spList => (
has
openidPortal
=>
(
is
=>
'
rw
'
);
has
rule
=>
(
is
=>
'
rw
'
,
default
=>
sub
{
{}
}
);
has
rule
=>
(
is
=>
'
rw
'
);
# INITIALIZATION
...
...
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenIDConnect.pm
View file @
0690a0c7
...
...
@@ -15,7 +15,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_OIDC_SERVICE_NOT_ALLOWED
)
;
our
$VERSION
=
'
2.0.
2
';
our
$VERSION
=
'
2.0.
3
';
extends
'
Lemonldap::NG::Portal::Main::Issuer
',
'
Lemonldap::NG::Portal::Lib::OpenIDConnect
',
...
...
@@ -29,7 +29,7 @@ sub beforeAuth { 'exportRequestParameters' }
use
constant
sessionKind
=>
'
OIDCI
';
has
rule
=>
(
is
=>
'
rw
'
,
default
=>
sub
{
{}
}
);
has
rule
=>
(
is
=>
'
rw
'
);
has
configStorage
=>
(
is
=>
'
ro
',
lazy
=>
1
,
...
...
lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/SAML.pm
View file @
0690a0c7
...
...
@@ -16,12 +16,12 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_UNAUTHORIZEDPARTNER
)
;
our
$VERSION
=
'
2.0.
2
';
our
$VERSION
=
'
2.0.
3
';
extends
'
Lemonldap::NG::Portal::Main::Issuer
',
'
Lemonldap::NG::Portal::Lib::SAML
';
has
rule
=>
(
is
=>
'
rw
'
,
default
=>
sub
{
{}
}
);
has
rule
=>
(
is
=>
'
rw
'
);
has
ssoUrlRe
=>
(
is
=>
'
rw
'
);
has
ssoUrlArtifact
=>
(
is
=>
'
rw
'
);
has
ssoGetUrl
=>
(
is
=>
'
rw
'
);
...
...
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