fix: correct formatting of sensitiveKeys array in AppService

- Removed unnecessary whitespace and added a trailing comma for consistency in the sensitiveKeys array within the getPublicConfigs method.
This commit is contained in:
Daniel Luiz Alves
2025-08-18 20:32:34 -03:00
parent a2ecd2e221
commit edf6d70d69

View File

@@ -44,13 +44,13 @@ export class AppService {
async getPublicConfigs() {
const sensitiveKeys = [
"smtpHost",
"smtpPort",
"smtpPort",
"smtpUser",
"smtpPass",
"smtpSecure",
"smtpNoAuth",
"smtpTrustSelfSigned",
"jwtSecret"
"jwtSecret",
];
return prisma.appConfig.findMany({