
* providers/scim: override AWS patch support AWS /ServiceProviderConfig query responds that it supports patch, but they only support patching a single group property. resolves #12321 * introduce compatibility mode for scim provider instead of hack Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> * add option for slack Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
25 lines
726 B
Python
25 lines
726 B
Python
# Generated by Django 5.0.12 on 2025-03-07 23:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("authentik_providers_scim", "0011_scimprovider_dry_run"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="scimprovider",
|
|
name="compatibility_mode",
|
|
field=models.CharField(
|
|
choices=[("default", "Default"), ("aws", "AWS"), ("slack", "Slack")],
|
|
default="default",
|
|
help_text="Alter authentik behavior for vendor-specific SCIM implementations.",
|
|
max_length=30,
|
|
verbose_name="SCIM Compatibility Mode",
|
|
),
|
|
),
|
|
]
|