mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-24 20:21:09 +01:00
Co-authored-by: Bianca <48203644+biazmoreira@users.noreply.github.com>
This commit is contained in:
parent
14e7e827a8
commit
90571de3bc
@ -129,6 +129,9 @@ type IdentityStore struct {
|
|||||||
|
|
||||||
// activateDeduplicationDone is a channel used for synchronization in testing
|
// activateDeduplicationDone is a channel used for synchronization in testing
|
||||||
activateDeduplicationDone chan struct{}
|
activateDeduplicationDone chan struct{}
|
||||||
|
|
||||||
|
// scimEnabled is used to indicate if SCIM paths are enabled and if SCIM operations can be performed.
|
||||||
|
scimEnabled bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type groupDiff struct {
|
type groupDiff struct {
|
||||||
|
|||||||
@ -171,7 +171,8 @@ func (i *IdentityStore) activate(ctx context.Context, _ *logical.Request, featur
|
|||||||
case activationflags.IdentityDeduplication:
|
case activationflags.IdentityDeduplication:
|
||||||
return i.activateDeduplication(ctx, nil)
|
return i.activateDeduplication(ctx, nil)
|
||||||
case activationflags.SCIMEnablement:
|
case activationflags.SCIMEnablement:
|
||||||
return nil
|
i.logger.Info("activating SCIM paths; SCIM operations can now be performed")
|
||||||
|
i.scimEnabled = true
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user