From a820af0a9564195283f01d6c0961e3a039f3fbba Mon Sep 17 00:00:00 2001 From: Vault Automation Date: Fri, 29 Aug 2025 07:39:33 -0600 Subject: [PATCH] Backport [VAULT-38600] Fix the name of the CE stub for mfaLoginEnterprisePaths into ce/main (#9021) Co-authored-by: Kuba Wieczorek --- vault/identity_store_oss.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vault/identity_store_oss.go b/vault/identity_store_oss.go index 18e29e6091..62cbebaa94 100644 --- a/vault/identity_store_oss.go +++ b/vault/identity_store_oss.go @@ -9,6 +9,7 @@ import ( "context" "github.com/hashicorp/vault/helper/identity" + "github.com/hashicorp/vault/sdk/framework" ) func (c *Core) SendGroupUpdate(context.Context, *identity.Group) error { @@ -18,3 +19,7 @@ func (c *Core) SendGroupUpdate(context.Context, *identity.Group) error { func (c *Core) CreateEntity(ctx context.Context) (*identity.Entity, error) { return nil, nil } + +func mfaLoginEnterprisePaths(i *IdentityStore) []*framework.Path { + return []*framework.Path{} +}