From cb25e713e6eb22d9a78123a0191f5db8d4f19575 Mon Sep 17 00:00:00 2001 From: Sebastian Pravda Date: Sun, 15 Jan 2023 13:03:43 +0100 Subject: [PATCH] fix: portfolio directory create path --- core/src/services/application_service.rs | 2 +- core/src/services/candidate_service.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/services/application_service.rs b/core/src/services/application_service.rs index 936cb9c..e268d8e 100644 --- a/core/src/services/application_service.rs +++ b/core/src/services/application_service.rs @@ -64,7 +64,7 @@ impl ApplicationService { encrypted_priv_key, ).await?; - PortfolioService::create_user_dir(application.id).await?; + // PortfolioService::create_user_dir(application.id).await?; Ok(application) } diff --git a/core/src/services/candidate_service.rs b/core/src/services/candidate_service.rs index 55c0b03..5f7c63d 100644 --- a/core/src/services/candidate_service.rs +++ b/core/src/services/candidate_service.rs @@ -27,7 +27,7 @@ impl CandidateService { ) .await?; - // PortfolioService::create_user_dir(candidate.id).await?; + PortfolioService::create_user_dir(candidate.id).await?; Ok(candidate)