We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1596486 commit 1c91373Copy full SHA for 1c91373
packages/backend/src/api/resources/JSON.ts
@@ -606,6 +606,9 @@ export interface UserJSON extends ClerkResourceJSON {
606
create_organizations_limit: number | null;
607
delete_self_enabled: boolean;
608
legal_accepted_at: number | null;
609
+ /**
610
+ * The locale of the user in BCP-47 format.
611
+ */
612
locale: string | null;
613
}
614
packages/backend/src/api/resources/User.ts
@@ -146,7 +146,7 @@ export class User {
146
readonly legalAcceptedAt: number | null,
147
148
/**
149
- * The locale of the user.
150
*/
151
readonly locale: string | null,
152
) {}
0 commit comments