mirror of https://github.com/portainer/portainer
19 lines
440 B
Go
19 lines
440 B
Go
|
package endpoints
|
||
|
|
||
|
import portainer "github.com/portainer/portainer/api"
|
||
|
|
||
|
func (handler *Handler) isNameUnique(name string, endpointID portainer.EndpointID) (bool, error) {
|
||
|
endpoints, err := handler.DataStore.Endpoint().Endpoints()
|
||
|
if err != nil {
|
||
|
return false, err
|
||
|
}
|
||
|
|
||
|
for _, endpoint := range endpoints {
|
||
|
if endpoint.Name == name && (endpointID == 0 || endpoint.ID != endpointID) {
|
||
|
return false, nil
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return true, nil
|
||
|
}
|