Mirror of @tangled.org/core. Running on a Raspberry Pi Zero 2 (Please be gentle).
0
fork

Configure Feed

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

lexicons: add lang breakdown to gitRefUpdate lexicon

Signed-off-by: oppiliappan <me@oppi.li>

authored by

oppiliappan and committed by
Tangled
9b690ac3 7010d62e

+29
api/tangled/cbor_gen.go

This is a binary file and will not be displayed.

api/tangled/gitrefUpdate.go

This is a binary file and will not be displayed.

+2
cmd/gen.go
··· 21 21 tangled.GitRefUpdate_Meta{}, 22 22 tangled.GitRefUpdate_Meta_CommitCount{}, 23 23 tangled.GitRefUpdate_Meta_CommitCount_ByEmail_Elem{}, 24 + tangled.GitRefUpdate_Meta_LangBreakdown{}, 25 + tangled.GitRefUpdate_Pair{}, 24 26 tangled.GraphFollow{}, 25 27 tangled.KnotMember{}, 26 28 tangled.Pipeline{},
+27
lexicons/git/refUpdate.json
··· 61 61 "type": "boolean", 62 62 "default": "false" 63 63 }, 64 + "langBreakdown": { 65 + "type": "object", 66 + "properties": { 67 + "inputs": { 68 + "type": "array", 69 + "items": { 70 + "type": "ref", 71 + "ref": "#pair" 72 + } 73 + } 74 + } 75 + }, 64 76 "commitCount": { 65 77 "type": "object", 66 78 "required": [], ··· 99 87 } 100 88 } 101 89 } 90 + } 91 + } 92 + }, 93 + "pair": { 94 + "type": "object", 95 + "required": [ 96 + "lang", 97 + "size" 98 + ], 99 + "properties": { 100 + "lang": { 101 + "type": "string" 102 + }, 103 + "size": { 104 + "type": "integer" 102 105 } 103 106 } 104 107 }