diff options
author | Vika <vika@fireburn.ru> | 2022-05-14 20:05:50 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2022-05-14 20:05:50 +0300 |
commit | a16272f3d0f32cb39b8da39021b45625f74ac140 (patch) | |
tree | 40b17d41da9dad8addbc093a83c040723d25ab84 /src/frontend | |
parent | b2902d393d88d1429c05593233f30979f6d15baf (diff) | |
download | kittybox-a16272f3d0f32cb39b8da39021b45625f74ac140.tar.zst |
feat: webmention sending and reply context enrichment
These features share some code since they both require fetching reply contexts, so it makes sense to implement them together. TODO cover webmention sending with integration tests
Diffstat (limited to 'src/frontend')
-rw-r--r-- | src/frontend/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mod.rs b/src/frontend/mod.rs index eec2f85..b87f9c6 100644 --- a/src/frontend/mod.rs +++ b/src/frontend/mod.rs @@ -286,7 +286,7 @@ pub fn homepage<D: Storage>(db: D, endpoints: IndiewebEndpoints) -> impl Filter< }) } -pub fn onboarding<D: Storage>( +pub fn onboarding<D: 'static + Storage>( db: D, endpoints: IndiewebEndpoints, http: reqwest::Client |