deb.open-vault/vault/identity_store_oidc_util.go

15 lines
292 B
Go
Raw Normal View History

2024-04-20 12:23:50 +00:00
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build !enterprise
package vault
import (
"github.com/hashicorp/vault/helper/namespace"
)
func (i *IdentityStore) listNamespaces() []*namespace.Namespace {
return []*namespace.Namespace{namespace.RootNamespace}
}