forked from
tangled.org/core
fork
Configure Feed
Select the types of activity you want to include in your feed.
Monorepo for Tangled
fork
Configure Feed
Select the types of activity you want to include in your feed.
1package models
2
3import "time"
4
5type TimelineEvent struct {
6 *Repo
7 *Follow
8 *RepoStar
9
10 EventAt time.Time
11
12 // optional: populate only if Repo is a fork
13 Source *Repo
14
15 // optional: populate only if event is Follow
16 *Profile
17 *FollowStats
18 *FollowStatus
19
20 // optional: populate only if event is Repo
21 IsStarred bool
22 StarCount int64
23}