mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05: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" | ||||
|  | ||||
| 	"code.gitea.io/sdk/gitea" | ||||
| @@ -17,7 +18,7 @@ var CmdLabelUpdate = cli.Command{ | ||||
| 	Usage:       "Update a label", | ||||
| 	Description: `Update a label`, | ||||
| 	Action:      runLabelUpdate, | ||||
| 	Flags: []cli.Flag{ | ||||
| 	Flags: append([]cli.Flag{ | ||||
| 		&cli.IntFlag{ | ||||
| 			Name:  "id", | ||||
| 			Usage: "label id", | ||||
| @@ -34,7 +35,7 @@ var CmdLabelUpdate = cli.Command{ | ||||
| 			Name:  "description", | ||||
| 			Usage: "label description", | ||||
| 		}, | ||||
| 	}, | ||||
| 	}, flags.AllDefaultFlags...), | ||||
| } | ||||
|  | ||||
| func runLabelUpdate(cmd *cli.Context) error { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Norwin
					Norwin