2020-10-17 00:23:08 -04:00
|
|
|
// 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"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ToComment converts a models.Comment to the api.Comment format
|
|
|
|
func ToComment(c *models.Comment) *api.Comment {
|
|
|
|
return &api.Comment{
|
|
|
|
ID: c.ID,
|
2021-03-27 12:45:26 -04:00
|
|
|
Poster: ToUser(c.Poster, nil),
|
2020-10-17 00:23:08 -04:00
|
|
|
HTMLURL: c.HTMLURL(),
|
|
|
|
IssueURL: c.IssueURL(),
|
|
|
|
PRURL: c.PRURL(),
|
|
|
|
Body: c.Content,
|
|
|
|
Created: c.CreatedUnix.AsTime(),
|
|
|
|
Updated: c.UpdatedUnix.AsTime(),
|
|
|
|
}
|
|
|
|
}
|