mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 09:15:26 +01:00 
			
		
		
		
	Add missing flags (#369)
fixes #368 Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/369 Reviewed-by: Andrew Thornton <art27@cantab.net> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
This commit is contained in:
		| @@ -5,6 +5,7 @@ | ||||
| package labels | ||||
|  | ||||
| import ( | ||||
| 	"code.gitea.io/tea/cmd/flags" | ||||
| 	"code.gitea.io/tea/modules/context" | ||||
|  | ||||
| 	"github.com/urfave/cli/v2" | ||||
| @@ -17,12 +18,12 @@ var CmdLabelDelete = cli.Command{ | ||||
| 	Usage:       "Delete a label", | ||||
| 	Description: `Delete a label`, | ||||
| 	Action:      runLabelDelete, | ||||
| 	Flags: []cli.Flag{ | ||||
| 	Flags: append([]cli.Flag{ | ||||
| 		&cli.IntFlag{ | ||||
| 			Name:  "id", | ||||
| 			Usage: "label id", | ||||
| 		}, | ||||
| 	}, | ||||
| 	}, flags.AllDefaultFlags...), | ||||
| } | ||||
|  | ||||
| func runLabelDelete(cmd *cli.Context) error { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Norwin
					Norwin