Fix linter problem

This commit is contained in:
Fang-Pen Lin
2025-10-24 12:27:35 -07:00
parent 1aa4acab93
commit a87c290893

View File

@@ -61,8 +61,7 @@ export const MySQLAccountSchema = BasePamAccountSchema.extend({
export const CreateMySQLAccountSchema = BaseCreatePamAccountSchema.extend({
credentials: MySQLAccountCredentialsSchema,
// We don't support pwd rotation for mysql yet
rotationEnabled: z.boolean().optional(),
rotationIntervalSeconds: z.number().optional()
rotationEnabled: z.boolean().default(false)
});
export const UpdateMySQLAccountSchema = BaseUpdatePamAccountSchema.extend({