Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp-module-perun
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp-module-perun
Merge requests
!38
Added properties to Group model
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Added properties to Group model
github/fork/vyskocilpavel/groupProperty
into
master
Overview
0
Commits
1
Pipelines
0
Changes
5
Merged
Pavel Vyskočil
requested to merge
github/fork/vyskocilpavel/groupProperty
into
master
6 years ago
Overview
0
Commits
1
Pipelines
0
Changes
5
Expand
Added properties voId and uniqueName for Group model
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
892c8b6b
1 commit,
2 years ago
5 files
+
63
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
lib/Auth/Process/PerunGroups.php
+
2
−
2
Options
@@ -77,9 +77,9 @@ class sspmod_perun_Auth_Process_PerunGroups extends SimpleSAML_Auth_ProcessingFi
throw
new
SimpleSAML_Error_Exception
(
"perun:PerunGroups: missing mandatory configuration options 'groupNameAuthority' or 'groupNamePrefix'."
);
}
$groupName
=
$this
->
groupNamePrefix
.
rawurlencode
(
$group
->
getName
())
.
'#'
.
$this
->
groupNameAuthority
;
$groupName
=
$this
->
groupNamePrefix
.
rawurlencode
(
$group
->
get
Unique
Name
())
.
'#'
.
$this
->
groupNameAuthority
;
}
else
{
$groupName
=
$this
->
mapGroupName
(
$request
,
$group
->
getName
());
$groupName
=
$this
->
mapGroupName
(
$request
,
$group
->
get
Unique
Name
());
}
array_push
(
$request
[
'Attributes'
][
$this
->
attrName
],
$groupName
);
}
Loading