We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 876f4b5 commit 1f130e7Copy full SHA for 1f130e7
apps/api/src/expenses/expenses.service.ts
@@ -12,9 +12,9 @@ import { ConfigService } from '@nestjs/config'
12
@Injectable()
13
export class ExpensesService {
14
constructor(private prisma: PrismaService, private s3: S3Service, private readonly configService:ConfigService) { }
15
-
+
16
private readonly S3_BUCKET_NAME = 'expenses-files'
17
- private readonly bucketName: string = this.configService.get('CAMPAIGN_APPLICATIONS_FILES_BUCKET', this.S3_BUCKET_NAME)
+ private readonly bucketName: string = this.configService.get('EXPENSES_FILES_BUCKET', this.S3_BUCKET_NAME)
18
19
/**
20
* Creates an expense, while blocking the corresponding amount in the source vault.
0 commit comments