12 lines
202 B
Go
12 lines
202 B
Go
// +build !enterprise
|
|
|
|
package vault
|
|
|
|
import (
|
|
"github.com/hashicorp/vault/helper/namespace"
|
|
)
|
|
|
|
func (i *IdentityStore) listNamespacePaths() []string {
|
|
return []string{namespace.RootNamespace.Path}
|
|
}
|