Skip to content

Commit

Permalink
🐛 Fix freshsales env
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Dec 20, 2023
1 parent 4aac794 commit 44081d4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/api/src/@core/environment/environement.validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ export class EnvVars {
PIPEDRIVE_CLIENT_SECRET: string;

@IsString()
FRESHSALES_CLIENT_ID: string;
@IsOptional()
FRESHSALES_CLIENT_ID?: string;

@IsString()
FRESHSALES_CLIENT_SECRET: string;
@IsOptional()
FRESHSALES_CLIENT_SECRET?: string;

@IsString()
ZENDESK_CLIENT_ID: string;
Expand Down

0 comments on commit 44081d4

Please sign in to comment.