mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-23 06:11:58 +00:00
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:
@@ -44,13 +44,13 @@ export class AppService {
|
|||||||
async getPublicConfigs() {
|
async getPublicConfigs() {
|
||||||
const sensitiveKeys = [
|
const sensitiveKeys = [
|
||||||
"smtpHost",
|
"smtpHost",
|
||||||
"smtpPort",
|
"smtpPort",
|
||||||
"smtpUser",
|
"smtpUser",
|
||||||
"smtpPass",
|
"smtpPass",
|
||||||
"smtpSecure",
|
"smtpSecure",
|
||||||
"smtpNoAuth",
|
"smtpNoAuth",
|
||||||
"smtpTrustSelfSigned",
|
"smtpTrustSelfSigned",
|
||||||
"jwtSecret"
|
"jwtSecret",
|
||||||
];
|
];
|
||||||
|
|
||||||
return prisma.appConfig.findMany({
|
return prisma.appConfig.findMany({
|
||||||
|
Reference in New Issue
Block a user