1
0
vault-redux/vault/identity_store_oidc_util.go
2024-01-02 10:36:20 -08:00

15 lines
293 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build !enterprise
package vault
import (
"github.com/hashicorp/vault/helper/namespace"
)
func (i *IdentityStore) listNamespaces() []*namespace.Namespace {
return []*namespace.Namespace{namespace.RootNamespace}
}