mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
39 lines
936 B
Go
39 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
|
||
|
}
|