mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
98a2e282be
Signed-off-by: Mark Anderson <manderson@hashicorp.com>
15 lines
235 B
Go
15 lines
235 B
Go
//go:build !consulent
|
|
// +build !consulent
|
|
|
|
package agent
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/hashicorp/consul/acl"
|
|
)
|
|
|
|
func (s *HTTPHandlers) validateRequestPartition(_ http.ResponseWriter, _ *acl.EnterpriseMeta) bool {
|
|
return true
|
|
}
|