aboutsummaryrefslogtreecommitdiffstats
path: root/services/feed/feed.go
blob: 93bf875fd04cd34e67db3e366a43d39e75b27e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package feed

import (
	"context"

	activities_model "code.gitea.io/gitea/models/activities"
)

// GetFeeds returns actions according to the provided options
func GetFeeds(ctx context.Context, opts activities_model.GetFeedsOptions) (activities_model.ActionList, int64, error) {
	return activities_model.GetFeeds(ctx, opts)
}