mirror of
https://github.com/go-gitea/gitea
synced 2025-07-15 23:17:19 +00:00
Rename context.Query to context.Form (#16562)
This commit is contained in:
@@ -161,7 +161,7 @@ func DashboardPost(ctx *context.Context) {
|
||||
|
||||
// SendTestMail send test mail to confirm mail service is OK
|
||||
func SendTestMail(ctx *context.Context) {
|
||||
email := ctx.Query("email")
|
||||
email := ctx.Form("email")
|
||||
// Send a test email to the user's email address and redirect back to Config
|
||||
if err := mailer.SendTestMail(email); err != nil {
|
||||
ctx.Flash.Error(ctx.Tr("admin.config.test_mail_failed", email, err))
|
||||
@@ -377,7 +377,7 @@ func Flush(ctx *context.Context) {
|
||||
ctx.Status(404)
|
||||
return
|
||||
}
|
||||
timeout, err := time.ParseDuration(ctx.Query("timeout"))
|
||||
timeout, err := time.ParseDuration(ctx.Form("timeout"))
|
||||
if err != nil {
|
||||
timeout = -1
|
||||
}
|
||||
@@ -399,13 +399,13 @@ func AddWorkers(ctx *context.Context) {
|
||||
ctx.Status(404)
|
||||
return
|
||||
}
|
||||
number := ctx.QueryInt("number")
|
||||
number := ctx.FormInt("number")
|
||||
if number < 1 {
|
||||
ctx.Flash.Error(ctx.Tr("admin.monitor.queue.pool.addworkers.mustnumbergreaterzero"))
|
||||
ctx.Redirect(setting.AppSubURL + "/admin/monitor/queue/" + strconv.FormatInt(qid, 10))
|
||||
return
|
||||
}
|
||||
timeout, err := time.ParseDuration(ctx.Query("timeout"))
|
||||
timeout, err := time.ParseDuration(ctx.Form("timeout"))
|
||||
if err != nil {
|
||||
ctx.Flash.Error(ctx.Tr("admin.monitor.queue.pool.addworkers.musttimeoutduration"))
|
||||
ctx.Redirect(setting.AppSubURL + "/admin/monitor/queue/" + strconv.FormatInt(qid, 10))
|
||||
@@ -435,9 +435,9 @@ func SetQueueSettings(ctx *context.Context) {
|
||||
return
|
||||
}
|
||||
|
||||
maxNumberStr := ctx.Query("max-number")
|
||||
numberStr := ctx.Query("number")
|
||||
timeoutStr := ctx.Query("timeout")
|
||||
maxNumberStr := ctx.Form("max-number")
|
||||
numberStr := ctx.Form("number")
|
||||
timeoutStr := ctx.Form("timeout")
|
||||
|
||||
var err error
|
||||
var maxNumber, number int
|
||||
|
Reference in New Issue
Block a user