open-vault/vault/identity_store_oidc_util.go
2019-07-02 20:15:43 -07:00

14 lines
233 B
Go

// +build !enterprise
package vault
import (
"context"
"github.com/hashicorp/vault/helper/namespace"
)
func (i *IdentityStore) listNamespacePaths(ctx context.Context) []string {
return []string{namespace.RootNamespace.Path}
}