From 1aa4acab93f5ab5dba6f5794963085e91f4cbeb6 Mon Sep 17 00:00:00 2001 From: Fang-Pen Lin Date: Fri, 24 Oct 2025 12:15:34 -0700 Subject: [PATCH] Code style --- .../ee/services/pam-resource/mysql/mysql-resource-schemas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/ee/services/pam-resource/mysql/mysql-resource-schemas.ts b/backend/src/ee/services/pam-resource/mysql/mysql-resource-schemas.ts index c87aa019a..5f5a033c3 100644 --- a/backend/src/ee/services/pam-resource/mysql/mysql-resource-schemas.ts +++ b/backend/src/ee/services/pam-resource/mysql/mysql-resource-schemas.ts @@ -60,7 +60,7 @@ export const MySQLAccountSchema = BasePamAccountSchema.extend({ export const CreateMySQLAccountSchema = BaseCreatePamAccountSchema.extend({ credentials: MySQLAccountCredentialsSchema, - //We don't support pwd rotation for mysql yet + // We don't support pwd rotation for mysql yet rotationEnabled: z.boolean().optional(), rotationIntervalSeconds: z.number().optional() });