2019-07-03 03:15:43 +00:00
|
|
|
// +build !enterprise
|
|
|
|
|
|
|
|
package vault
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/vault/helper/namespace"
|
|
|
|
)
|
|
|
|
|
2019-07-03 14:12:46 +00:00
|
|
|
func (i *IdentityStore) listNamespacePaths() []string {
|
2019-07-03 03:15:43 +00:00
|
|
|
return []string{namespace.RootNamespace.Path}
|
|
|
|
}
|