fix: portfolio directory create path

This commit is contained in:
Sebastian Pravda 2023-01-15 13:03:43 +01:00
parent 5740f19724
commit cb25e713e6
No known key found for this signature in database
GPG key ID: F3BC84F08EFA3F57
2 changed files with 2 additions and 2 deletions

View file

@ -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)
}

View file

@ -27,7 +27,7 @@ impl CandidateService {
)
.await?;
// PortfolioService::create_user_dir(candidate.id).await?;
PortfolioService::create_user_dir(candidate.id).await?;
Ok(candidate)