update notes and add sbot settings config route to router

This commit is contained in:
glyph 2022-03-13 11:09:39 +02:00
parent c794d398b8
commit 580771ebf2
3 changed files with 7 additions and 2 deletions

View File

@ -17,7 +17,8 @@ we do not need to be super fast or feature-rich.
x scuttlebutt menu
- configure_sbot
x template
- sbot_config data
x sbot_config data
- might need some thought...render elements or input data
x write the nav and base templates
x get the homepage loading properly

View File

@ -136,6 +136,10 @@ fn main() {
Response::html(routes::settings::scuttlebutt::menu::build())
},
(GET) (/settings/scuttlebutt/configure) => {
Response::html(routes::settings::scuttlebutt::configure::build())
},
// The code block is called if none of the other blocks matches the request.
// We return an empty response with a 404 status code.
_ => Response::empty_404()

View File

@ -1,2 +1,2 @@
pub mod configure_sbot;
pub mod configure;
pub mod menu;