Merge pull request #3 from netbirdio/feature/add-signiture-function-for-approval

Add signature function for approval
This commit is contained in:
pascal-fischer
2023-11-24 16:07:13 +01:00
committed by GitHub
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
}