open-vault/vault/namespaces_oss.go
Hamid Ghaf a034ebfd27
HCP link integration (#16939)
* HCP link integration

* update configure-git.yml

* more OSS stuff

* removing internal repos

* adding a nil check

* removing config test to be included in ENT only

* updating hcp-sdk-go to v0.22.0

* remove Hostname and AuthURL link config params

Co-authored-by: Chris Capurso <1036769+ccapurso@users.noreply.github.com>
2022-09-06 14:11:04 -04:00

18 lines
375 B
Go

//go:build !enterprise
package vault
import (
"context"
"github.com/hashicorp/vault/helper/namespace"
)
func (c *Core) NamespaceByID(ctx context.Context, nsID string) (*namespace.Namespace, error) {
return namespaceByID(ctx, nsID, c)
}
func (c *Core) ListNamespaces(includePath bool) []*namespace.Namespace {
return []*namespace.Namespace{namespace.RootNamespace}
}