Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
936 B
38 lines
936 B
// 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 |
|
}
|
|
|