Monorepo for Tangled tangled.org
6

Configure Feed

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

1{ 2 "lexicon": 1, 3 "id": "sh.tangled.feed.comment", 4 "needsCbor": true, 5 "needsType": true, 6 "defs": { 7 "main": { 8 "type": "record", 9 "key": "tid", 10 "record": { 11 "type": "object", 12 "required": [ 13 "subject", 14 "body", 15 "createdAt" 16 ], 17 "properties": { 18 "subject": { 19 "type": "ref", 20 "ref": "com.atproto.repo.strongRef" 21 }, 22 "body": { 23 "type": "union", 24 "refs": ["sh.tangled.markup.markdown"] 25 }, 26 "createdAt": { 27 "type": "string", 28 "format": "datetime" 29 }, 30 "replyTo": { 31 "type": "ref", 32 "ref": "com.atproto.repo.strongRef" 33 }, 34 "pullRoundIdx": { 35 "type": "integer", 36 "minimum": 0, 37 "description": "optional pull submission round index. required when subject is sh.tangled.repo.pull" 38 } 39 } 40 } 41 } 42 } 43}