don't
5
fork

Configure Feed

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

fix(knot): tag Event enum

Signed-off-by: tjh <did:plc:65gha4t3avpfpzmvpbwovss7>

+2
+2
crates/knot/src/model/knot_state.rs
··· 27 27 use super::config::KnotConfiguration; 28 28 29 29 #[derive(Clone, Debug, Serialize)] 30 + #[serde(tag = "$type")] 30 31 pub enum Event { 32 + #[serde(rename = "sh.tangled.git.refUpdate")] 31 33 RefUpdate(Arc<RefUpdate<'static>>), 32 34 } 33 35