Remove schema ignore tag for captcha from School struct

This commit is contained in:
Andrea Fazzi 2022-12-07 14:59:08 +01:00
parent 41b974b516
commit d167c84605

View file

@ -2,6 +2,7 @@ package orm
import (
"fmt"
"log"
"net/http"
"os"
"strings"
@ -69,8 +70,8 @@ type School struct {
SelectedRegion map[uint]string `gorm:"-"`
AllRegions []*Region `gorm:"-"`
CaptchaID string `gorm:"-" schema:"-"`
CaptchaSolution string `gorm:"-" schema:"-"`
CaptchaID string `gorm:"-"`
CaptchaSolution string `gorm:"-"`
mailSender *mail.MailSender
}
@ -196,6 +197,7 @@ func (model *School) Create(db *Database, args map[string]string, w http.Respons
school := new(School)
err := renderer.Decode(school, r)
if err != nil {
log.Println("Captcha", r.FormValue("CaptchaID"), r.FormValue("CaptchaSolution"))
return nil, err
}