don't
5
fork

Configure Feed

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

fix(lexicon): update case for author/committer signatures

This is technically wrong for the output of 'sh.tangled.repo.branches',
but appview doesn't seem to care.

Signed-off-by: tjh <x@tjh.dev>

tjh f910acaf 3e660ba3

+5 -1
+5 -1
crates/lexicon/src/sh/tangled/repo.rs
··· 155 155 156 156 /// Git commit signature (ie. the author or committer). 157 157 #[derive(Debug, Serialize)] 158 - #[serde(rename_all = "PascalCase")] 159 158 pub struct Signature { 159 + /// Author or committer name. 160 160 pub name: String, 161 + 162 + /// Author or committer email. 161 163 pub email: String, 164 + 165 + /// Author or committer timestamp. 162 166 #[serde(with = "time::serde::rfc3339")] 163 167 pub when: OffsetDateTime, 164 168 }