mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			936 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			936 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 The Gitea Authors. All rights reserved.
 | |
| // Use of this source code is governed by a MIT-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package convert
 | |
| 
 | |
| import (
 | |
| 	"code.gitea.io/gitea/models"
 | |
| 	api "code.gitea.io/gitea/modules/structs"
 | |
| )
 | |
| 
 | |
| // ToTrackedTime converts TrackedTime to API format
 | |
| func ToTrackedTime(t *models.TrackedTime) (apiT *api.TrackedTime) {
 | |
| 	apiT = &api.TrackedTime{
 | |
| 		ID:       t.ID,
 | |
| 		IssueID:  t.IssueID,
 | |
| 		UserID:   t.UserID,
 | |
| 		UserName: t.User.Name,
 | |
| 		Time:     t.Time,
 | |
| 		Created:  t.Created,
 | |
| 	}
 | |
| 	if t.Issue != nil {
 | |
| 		apiT.Issue = t.Issue.APIFormat()
 | |
| 	}
 | |
| 	if t.User != nil {
 | |
| 		apiT.UserName = t.User.Name
 | |
| 	}
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // ToTrackedTimeList converts TrackedTimeList to API format
 | |
| func ToTrackedTimeList(tl models.TrackedTimeList) api.TrackedTimeList {
 | |
| 	result := make([]*api.TrackedTime, 0, len(tl))
 | |
| 	for _, t := range tl {
 | |
| 		result = append(result, ToTrackedTime(t))
 | |
| 	}
 | |
| 	return result
 | |
| }
 |