more path name fix
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful

This commit is contained in:
BAaboe 2025-07-22 17:38:04 +02:00
parent 4ec36c1cda
commit 228bc68327

View file

@ -13,7 +13,7 @@ mod invites;
mod me; mod me;
mod stats; mod stats;
mod users; mod users;
mod members; mod member;
pub fn router(app_state: Arc<AppState>) -> Router<Arc<AppState>> { pub fn router(app_state: Arc<AppState>) -> Router<Arc<AppState>> {
let router_with_auth = Router::new() let router_with_auth = Router::new()
@ -30,6 +30,6 @@ pub fn router(app_state: Arc<AppState>) -> Router<Arc<AppState>> {
.route("/stats", get(stats::res)) .route("/stats", get(stats::res))
.nest("/auth", auth::router(app_state.clone())) .nest("/auth", auth::router(app_state.clone()))
.nest("/channels", channels::router(app_state.clone())) .nest("/channels", channels::router(app_state.clone()))
.nest("/members", members::router(app_state)) .nest("/member", member::router(app_state))
.merge(router_with_auth) .merge(router_with_auth)
} }