transform id(thing) to id(string) on get role, permission, users

This commit is contained in:
Bakunya
2025-05-04 17:07:20 +07:00
parent bdcd41f54d
commit 12a730a394
+1 -1
View File
@@ -19,7 +19,7 @@ pub async fn gateway_service(
};
let public_routes = iam_public_routes();
let protected_routes = iam_protected_routes();//.layer(from_fn(auth_middleware));
let protected_routes = iam_protected_routes().layer(from_fn(auth_middleware));
Router::new()
.route("/", get(Redirect::to("/docs")))