2022-03-01 01:58:48 +00:00
|
|
|
// Copyright 2021-2022 the Pinniped contributors. All Rights Reserved.
|
2021-02-19 18:55:01 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package validation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"k8s.io/apimachinery/pkg/util/validation/field"
|
|
|
|
|
|
|
|
identityapi "go.pinniped.dev/generated/1.20/apis/concierge/identity"
|
|
|
|
)
|
|
|
|
|
|
|
|
func ValidateWhoAmIRequest(whoAmIRequest *identityapi.WhoAmIRequest) field.ErrorList {
|
|
|
|
return nil // add validation for spec here if we expand it
|
|
|
|
}
|