cargo clippy
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Pierre HUBERT 2023-04-15 11:50:17 +02:00
parent 0de80a6221
commit bd69c60559

View File

@ -234,14 +234,16 @@ pub async fn users_route(
}
pub async fn create_user(admin: CurrentUser, clients: web::Data<ClientManager>) -> impl Responder {
let mut user = User::default();
user.authorized_clients = Some(
let user = User {
authorized_clients: Some(
clients
.get_default_clients()
.iter()
.map(|u| u.id.clone())
.collect(),
);
),
..Default::default()
};
HttpResponse::Ok().body(
EditUserTemplate {