A focused Docker Compose management web application.
0
fork

Configure Feed

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

docs: add rust doc

Brooke c425f755 6f96d2eb

+2
+2
packages/node/src/api/mod.rs
··· 59 59 return Ok(router); 60 60 } 61 61 62 + /// Sets up a Salvo router with all API routes 62 63 fn router() -> Router { 63 64 return Router::new().push( 64 65 Router::with_path("/api") 65 66 .push(Router::with_path("ping").get(ping)) 66 67 .push(auth::router()) 67 68 .push( 69 + // New router for protected routes, to avoid repetition 68 70 Router::new() 69 71 .hoop(protected) 70 72 .push(Router::with_path("realtime").get(app_subscribe))