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

@@ -50,7 +50,7 @@ export class AppService {
"smtpSecure", "smtpSecure",
"smtpNoAuth", "smtpNoAuth",
"smtpTrustSelfSigned", "smtpTrustSelfSigned",
"jwtSecret" "jwtSecret",
]; ];
return prisma.appConfig.findMany({ return prisma.appConfig.findMany({