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.
		
		
		
		
		
			
		
			
				
					
					
						
							24 lines
						
					
					
						
							637 B
						
					
					
				
			
		
		
	
	
							24 lines
						
					
					
						
							637 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"
 | 
						|
)
 | 
						|
 | 
						|
// ToComment converts a models.Comment to the api.Comment format
 | 
						|
func ToComment(c *models.Comment) *api.Comment {
 | 
						|
	return &api.Comment{
 | 
						|
		ID:       c.ID,
 | 
						|
		Poster:   ToUser(c.Poster, false, false),
 | 
						|
		HTMLURL:  c.HTMLURL(),
 | 
						|
		IssueURL: c.IssueURL(),
 | 
						|
		PRURL:    c.PRURL(),
 | 
						|
		Body:     c.Content,
 | 
						|
		Created:  c.CreatedUnix.AsTime(),
 | 
						|
		Updated:  c.UpdatedUnix.AsTime(),
 | 
						|
	}
 | 
						|
}
 | 
						|
 |