Web dashboard: dashboard module scaffold for parallel steps

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NHyYupFdBiR4VfoUM7NjSM
This commit is contained in:
2026-09-03 04:59:29 +00:00
co-authored by Claude Fable 5.1
parent 4995a8bd5d
commit 849231e49a
11 changed files with 158 additions and 15 deletions
+2 -15
View File
@@ -1,3 +1,4 @@
pub mod dashboard;
pub mod issue;
pub mod public;
pub mod rate;
@@ -367,7 +368,7 @@ pub fn router(config: &crate::config::Config) -> axum::Router<crate::server::App
))
.route_layer(from_fn(map_forbidden));
let dashboard = axum::Router::new()
.route("/dashboard", get(dashboard_stub))
.merge(dashboard::router())
.route("/rate", post(rate::post))
.route_layer(permission_required!(
session::Backend,
@@ -390,20 +391,6 @@ pub fn router(config: &crate::config::Config) -> axum::Router<crate::server::App
.merge(dashboard)
}
#[derive(Template)]
#[template(path = "dashboard/overview.html")]
struct OverviewTemplate {
page: Page,
}
async fn dashboard_stub(auth: session::AuthSession) -> Result<Response, WebError> {
let viewer = auth.user().await.map(session::Viewer::from);
Ok(Html(OverviewTemplate {
page: Page::new("Overview", viewer, "dashboard"),
})
.into_response())
}
async fn map_forbidden(request: Request, next: Next) -> Response {
let mut response = next.run(request).await;
if response.status() == StatusCode::FORBIDDEN {