Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
286724a7
Commit
286724a7
authored
10 years ago
by
Matt Schwager
Browse files
Options
Downloads
Patches
Plain Diff
Added documentation for AttributeCopy authentication processing filter.
parent
43c54481
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/simplesamlphp-authproc.txt
+1
-0
1 addition, 0 deletions
docs/simplesamlphp-authproc.txt
modules/core/docs/authproc_attributecopy.txt
+18
-0
18 additions, 0 deletions
modules/core/docs/authproc_attributecopy.txt
with
19 additions
and
0 deletions
docs/simplesamlphp-authproc.txt
+
1
−
0
View file @
286724a7
...
...
@@ -128,6 +128,7 @@ The following filters are included in the simpleSAMLphp distribution:
- [`authorize:Authorize`](./authorize:authorize): Access control based on regular expressions.
- [`consent:Consent`](./consent:consent): Ask the user for consent before transmitting attributes.
- [`core:AttributeAdd`](./core:authproc_attributeadd): Add attributes to the response.
- [`core:AttributeCopy`](./core:authproc_attributecopy): Copy existing attributes to the response.
- [`core:AttributeAlter`](./core:authproc_attributealter): Do search-and-replace on attributevalues.
- [`core:AttributeLimit`](./core:authproc_attributelimit): Limit the attributes in the response.
- [`core:AttributeMap`](./core:authproc_attributemap): Change the name of the attributes.
...
...
This diff is collapsed.
Click to expand it.
modules/core/docs/authproc_attributecopy.txt
0 → 100644
+
18
−
0
View file @
286724a7
`core:AttributeCopy`
===================
Filter that renames attributes.
Examples
--------
Copy a single attribute (user's uid will be copied to the user's username):
'authproc' => array(
50 => array(
'class' => 'core:AttributeCopy',
'uid' => 'username',
),
),
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment