mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
feat: disable captcha for local dev
This commit is contained in:
parent
672e82d06e
commit
2f9e26d799
@ -119,6 +119,7 @@ func CreateThread(c *gin.Context) {
|
||||
return
|
||||
}
|
||||
|
||||
if Config.App.IsCaptchaActive {
|
||||
captchaID := form.Value["captchaId"][0]
|
||||
captchaString := form.Value["captcha"][0]
|
||||
isCaptchaValid := captcha.VerifyString(captchaID, captchaString)
|
||||
@ -129,6 +130,7 @@ func CreateThread(c *gin.Context) {
|
||||
c.HTML(http.StatusBadRequest, "400.html", errorHtmlData)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
conn, err := Db.Pool.Acquire(context.TODO())
|
||||
if err != nil {
|
||||
@ -279,6 +281,7 @@ func UpdateThread(c *gin.Context) {
|
||||
return
|
||||
}
|
||||
|
||||
if Config.App.IsCaptchaActive {
|
||||
captchaID := form.Value["captchaId"][0]
|
||||
captchaString := form.Value["captcha"][0]
|
||||
isCaptchaValid := captcha.VerifyString(captchaID, captchaString)
|
||||
@ -289,6 +292,7 @@ func UpdateThread(c *gin.Context) {
|
||||
c.HTML(http.StatusBadRequest, "400.html", errorHtmlData)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
isSageField := form.Value["sage"]
|
||||
var isSageString string
|
||||
|
Loading…
Reference in New Issue
Block a user