OpenConext / OpenConext/OpenConext-Invite
Make email type in SCIM message configurable
Open
Nobody has claimed this yet.
scim
- Dominant language
- Java
- Stars
- 6
- Forks
- 7
- Avg merge
- 12h 24m
- Merged PRs (30d)
- 11
Description
Some serviceproviders are picky on where the value for the email address is send. e.g. AWS requires the type to be other, while GCP requires it to be work
- Add a selector to openconext-Manage provisionings,
home,workandother - Use
otherif not configured (default) - Change the SCIM messages to send the email address as the configured type
- If multiple types are configured, send the email multiple times
examples:
{
"emails": [
{
"value": "alice@example.com",
"type": "work",
}
]
}
{
"emails": [
{
"value": "alice@example.com",
"type": "other",
}
]
}
{
"emails": [
{
"value": "alice@example.com",
"type": "other",
},
{
"value": "alice@example.com",
"type": "work",
}
]
}
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the openconext-Manage provisioning configuration and the SCIM message generation described in the issue. Trace how the email value is currently emitted, then verify that the default is other, configured types produce corresponding entries, and multiple types produce multiple entries.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- api, backend
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Active
- Clarity
- Mostly clear
- Newbie friendliness
- 58/100