mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 09:15:26 +01:00 
			
		
		
		
	Add --fields to notification & milestone listings (#422)
				
					
				
			Together with #415 this finally adds the field flag to all entity listings. closes #342 ### ⚠️ breaking changes ⚠️ This changes the column names of `tea milestones ls`: ```diff - TITLE | OPEN/CLOSED ISSUES | DUEDATE + TITLE | ITEMS | DUEDATE ``` Co-authored-by: Norwin <git@nroo.de> Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/422 Reviewed-by: delvh <dev.lh@web.de> Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
This commit is contained in:
		| @@ -28,7 +28,7 @@ var CmdNotificationsMarkRead = cli.Command{ | ||||
| 		if err != nil { | ||||
| 			return err | ||||
| 		} | ||||
| 		if !flags.NotificationStateFlag.IsSet() { | ||||
| 		if !cmd.IsSet(flags.NotificationStateFlag.Name) { | ||||
| 			filter = []string{string(gitea.NotifyStatusUnread)} | ||||
| 		} | ||||
| 		return markNotificationAs(cmd, filter, gitea.NotifyStatusRead) | ||||
| @@ -49,7 +49,7 @@ var CmdNotificationsMarkUnread = cli.Command{ | ||||
| 		if err != nil { | ||||
| 			return err | ||||
| 		} | ||||
| 		if !flags.NotificationStateFlag.IsSet() { | ||||
| 		if !cmd.IsSet(flags.NotificationStateFlag.Name) { | ||||
| 			filter = []string{string(gitea.NotifyStatusRead)} | ||||
| 		} | ||||
| 		return markNotificationAs(cmd, filter, gitea.NotifyStatusUnread) | ||||
| @@ -70,7 +70,7 @@ var CmdNotificationsMarkPinned = cli.Command{ | ||||
| 		if err != nil { | ||||
| 			return err | ||||
| 		} | ||||
| 		if !flags.NotificationStateFlag.IsSet() { | ||||
| 		if !cmd.IsSet(flags.NotificationStateFlag.Name) { | ||||
| 			filter = []string{string(gitea.NotifyStatusUnread)} | ||||
| 		} | ||||
| 		return markNotificationAs(cmd, filter, gitea.NotifyStatusPinned) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Norwin
					Norwin