Skip to content

Commit

Permalink
refactor: update file upload configuration to enable based on false c…
Browse files Browse the repository at this point in the history
…heck
  • Loading branch information
minai621 committed Nov 11, 2024
1 parent 57c0ebd commit 99e5bcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/settings/settings.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class SettingsService {
},
},
fileUpload: {
enable: this.configService.get("FILE_UPLOAD") === "true",
enable: this.configService.get("FILE_UPLOAD") !== "false",
},
};
}
Expand Down

0 comments on commit 99e5bcc

Please sign in to comment.