about summary refs log tree commit diff
path: root/src/frontend/mod.rs
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2022-05-14 20:05:50 +0300
committerVika <vika@fireburn.ru>2022-05-14 20:05:50 +0300
commita16272f3d0f32cb39b8da39021b45625f74ac140 (patch)
tree40b17d41da9dad8addbc093a83c040723d25ab84 /src/frontend/mod.rs
parentb2902d393d88d1429c05593233f30979f6d15baf (diff)
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/mod.rs')
-rw-r--r--src/frontend/mod.rs2
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