This repository has no description
0

Configure Feed

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

core / appview / models / reference.go
287 B 18 lines
1package models 2 3type RefKind int 4 5const ( 6 RefKindIssue RefKind = iota 7 RefKindPull 8) 9 10// /@alice.com/cool-proj/issues/123 11// /@alice.com/cool-proj/issues/123#comment-321 12type ReferenceLink struct { 13 Handle string 14 Repo string 15 Kind RefKind 16 SubjectId int 17 CommentId *int 18}