2024-12-13 15:10:27 -05:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ValidateCredentialSubmit finds the user credential and validates it against the
|
|
|
|
|
// session challenge
|
|
|
|
|
func ValidateCredentialSubmit(c echo.Context) error {
|
|
|
|
|
return nil
|
|
|
|
|
}
|