1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

feat(edge): show correct heartbeat and sync aeec changes [EE-2876] (#6769)

This commit is contained in:
Chaim Lev-Ari 2022-04-19 21:43:36 +03:00 committed by GitHub
parent 76d1b70644
commit e217ac7121
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
44 changed files with 1099 additions and 307 deletions

View file

@ -1,6 +1,10 @@
package testhelpers
import "net/http"
import (
"net/http"
portainer "github.com/portainer/portainer/api"
)
type testRequestBouncer struct {
}
@ -13,3 +17,23 @@ func NewTestRequestBouncer() *testRequestBouncer {
func (testRequestBouncer) AuthenticatedAccess(h http.Handler) http.Handler {
return h
}
func (testRequestBouncer) AdminAccess(h http.Handler) http.Handler {
return h
}
func (testRequestBouncer) RestrictedAccess(h http.Handler) http.Handler {
return h
}
func (testRequestBouncer) PublicAccess(h http.Handler) http.Handler {
return h
}
func (testRequestBouncer) AuthorizedEndpointOperation(r *http.Request, endpoint *portainer.Endpoint) error {
return nil
}
func (testRequestBouncer) AuthorizedEdgeEndpointOperation(r *http.Request, endpoint *portainer.Endpoint) error {
return nil
}