open-vault/vault/logical_system_activity_write.go
miagilepner 1ea85c56d7
VAULT-14734: activity log write endpoint (#20019)
* add noop endpoint with testonly build flag

* add tests for endpoint

* cleanup

* fix test name

* add changelog

* pr fixes
2023-04-12 18:26:26 +02:00

13 lines
238 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build !testonly
package vault
import (
"github.com/hashicorp/vault/sdk/framework"
)
func (b *SystemBackend) activityWritePath() *framework.Path { return nil }