mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Add is_archived option for issue indexer (#32735)
				
					
				
			Try to fix #32697 Reason: `is_archived` is already defined in the query options, but it is not implemented in the indexer.
This commit is contained in:
		| @@ -72,7 +72,7 @@ func ToDBOptions(ctx context.Context, options *internal.SearchOptions) (*issue_m | ||||
| 		UpdatedAfterUnix:   options.UpdatedAfterUnix.Value(), | ||||
| 		UpdatedBeforeUnix:  options.UpdatedBeforeUnix.Value(), | ||||
| 		PriorityRepoID:     0, | ||||
| 		IsArchived:         optional.None[bool](), | ||||
| 		IsArchived:         options.IsArchived, | ||||
| 		Org:                nil, | ||||
| 		Team:               nil, | ||||
| 		User:               nil, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user