Replace the error code with an actual response for the end user.
This commit is contained in:
parent
c8ca445bb7
commit
e22aa46ae7
@ -93,9 +93,12 @@ func SignupPage(c *fiber.Ctx) error {
|
|||||||
|
|
||||||
if captchaResponse.Success == false {
|
if captchaResponse.Success == false {
|
||||||
log.Error("Captcha validation failed")
|
log.Error("Captcha validation failed")
|
||||||
return c.SendStatus(fiber.StatusBadRequest)
|
return c.JSON(fiber.Map{
|
||||||
|
"username": username,
|
||||||
|
"message": "Sorry! But the captcha validation failed. Please try again.",
|
||||||
|
"status": c.Response().StatusCode(),
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// create user file
|
// create user file
|
||||||
|
|
||||||
f, err := os.Create("/var/publapi/users/" + username + ".sh")
|
f, err := os.Create("/var/publapi/users/" + username + ".sh")
|
||||||
|
Loading…
Reference in New Issue
Block a user