mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-14 15:28:05 +09:00
Clarify the "validation" and "error display" logic. All the copied&pasted `Validate` functions are removed.
13 lines
283 B
Go
13 lines
283 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package forms
|
|
|
|
import "gitea.dev/modules/web/middleware"
|
|
|
|
// EditRunnerForm form for admin to create runner
|
|
type EditRunnerForm struct {
|
|
middleware.FormDefaultValidator
|
|
Description string
|
|
}
|