Skip to content

Commit 5a5e7d8

Browse files
committed
add customize field for accounts
1 parent 319ffc5 commit 5a5e7d8

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/packages/frontend/account/table.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export class AccountTable extends Table {
4747
ssh_keys: null,
4848
created: null,
4949
ephemeral: null,
50+
customize: null,
5051
unlisted: null,
5152
tags: null,
5253
tours: null,

src/packages/util/db-schema/accounts.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,10 @@ Table({
276276
type: "map",
277277
desc: "Information related to displaying an avatar for this user's location and presence in a document or chatroom.",
278278
},
279+
customize: {
280+
type: "map",
281+
desc: "Admin-managed configuration overrides for this account.",
282+
},
279283
groups: {
280284
type: "array",
281285
pg_type: "TEXT[]",
@@ -545,6 +549,7 @@ Table({
545549
image: undefined,
546550
color: "rgb(170,170,170)",
547551
},
552+
customize: null,
548553
ssh_keys: {},
549554
created: null,
550555
ephemeral: null,
@@ -574,6 +579,7 @@ Table({
574579
evaluate_key: true,
575580
font_size: true,
576581
profile: true,
582+
customize: true,
577583
ssh_keys: true,
578584
sign_up_usage_intent: true,
579585
unlisted: true,

0 commit comments

Comments
 (0)