mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-18 18:38:08 -05:00
Co-authored-by: Bianca <48203644+biazmoreira@users.noreply.github.com>
This commit is contained in:
parent
14e7e827a8
commit
90571de3bc
2 changed files with 5 additions and 1 deletions
|
|
@ -129,6 +129,9 @@ type IdentityStore struct {
|
|||
|
||||
// activateDeduplicationDone is a channel used for synchronization in testing
|
||||
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 {
|
||||
|
|
|
|||
|
|
@ -171,7 +171,8 @@ func (i *IdentityStore) activate(ctx context.Context, _ *logical.Request, featur
|
|||
case activationflags.IdentityDeduplication:
|
||||
return i.activateDeduplication(ctx, nil)
|
||||
case activationflags.SCIMEnablement:
|
||||
return nil
|
||||
i.logger.Info("activating SCIM paths; SCIM operations can now be performed")
|
||||
i.scimEnabled = true
|
||||
}
|
||||
|
||||
return nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue