refactor: Update typings of /me/settings and /users/:id/settings endpoints (no-changelog) (#9620)

This commit is contained in:
Tomi Turtiainen
2024-06-05 09:35:43 +03:00
committed by GitHub
parent 5322802992
commit d6a046b8ad
3 changed files with 17 additions and 17 deletions

View File

@@ -47,7 +47,7 @@ export class UserSettingsUpdatePayload {
@Expose()
@IsBoolean({ message: 'userActivated should be a boolean' })
@IsOptional()
userActivated: boolean;
userActivated?: boolean;
@Expose()
@IsBoolean({ message: 'allowSSOManualLogin should be a boolean' })