Monorepo for Tangled tangled.org
6

Configure Feed

Select the types of activity you want to include in your feed.

1package models 2 3import "time" 4 5type RecentLinkType string 6 7const ( 8 RecentLinkTypeRepo RecentLinkType = "repo" 9 RecentLinkTypeIssue RecentLinkType = "issue" 10 RecentLinkTypePull RecentLinkType = "pull" 11) 12 13type RecentLink struct { 14 Id int64 15 UserDid string 16 LinkType RecentLinkType 17 Target string // repo DID for repos; AT-URI string for issues/pulls 18 Visited time.Time 19}