add signature functions for approval

This commit is contained in:
Pascal Fischer
2023-11-24 15:54:25 +01:00
parent a966bce7db
commit 536fe4024e
2 changed files with 12 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
package integrations
func IsCloud() bool {
return false
}
+7
View File
@@ -0,0 +1,7 @@
package integrations
import "github.com/netbirdio/netbird/management/server"
func IsPeerAllowedToConnect(peer *server.Peer) bool {
return true
}