コード例 #1
0
ファイル: post.go プロジェクト: trigrass2/wego
//Get new best posts by category
func (this *PostListRouter) setNewBestPostsOfCategory(posts *[]models.Post, cat *models.Category) {
	err := models.NewBestPostsByExample(posts, &models.Post{CategoryId: cat.Id})
	if err != nil {
		this.Result = err
		return
	}

	this.Data["NewBestPosts"] = posts
}
コード例 #2
0
ファイル: post.go プロジェクト: trigrass2/wego
//Get new best posts by topic
func (this *PostListRouter) setNewBestPostsOfTopic(posts *[]models.Post, topic *models.Topic) {
	err := models.NewBestPostsByExample(posts, &models.Post{TopicId: topic.Id})
	if err != nil {
		this.Result = err
		return
	}

	this.Data["NewBestPosts"] = posts
}
コード例 #3
0
ファイル: post.go プロジェクト: trigrass2/wego
//Get new best posts
func (this *PostListRouter) setNewBestPosts(posts *[]models.Post) {
	err := models.NewBestPostsByExample(posts, &models.Post{})
	if err != nil {
		this.Result = err
		return
	}

	this.Data["NewBestPosts"] = posts
}