We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 185e17c commit b4108dcCopy full SHA for b4108dc
src/web/api/server/v1/routes.rs
@@ -33,6 +33,7 @@ pub fn router(app_data: Arc<AppData>) -> Router {
33
let v1_api_routes = Router::new()
34
.route("/", get(redirect_to_about))
35
.nest("/user", user::routes::router(app_data.clone()))
36
+ .nest("/users", user::routes::router_for_multiple_resources(app_data.clone()))
37
.nest("/about", about::routes::router(app_data.clone()))
38
.nest("/category", category::routes::router(app_data.clone()))
39
.nest("/tag", tag::routes::router_for_single_resources(app_data.clone()))
0 commit comments