···11+alter table "user"
22+ add column "whitelisted"
33+ boolean not null default false;
44+55+insert into "user" ("did", "whitelisted")
66+ values ('did:plc:pj5vgcebbi6shqj6zapminia', true)
77+ on conflict ("did") do update set "whitelisted" = true;
+3-2
app/prisma/schema.prisma
···99}
10101111model User {
1212- did String @id // This has to be validated as a correctly formated DID
1313- sessions Session[]
1212+ did String @id // This has to be validated as a correctly formated DID
1313+ sessions Session[]
1414+ whitelisted Boolean @default(false)
1415}
15161617model Session {
···7171 }}
7272 children={(field) => (
7373 <label class="flex flex-col">
7474+ <p class="mb-2 text-red-500">
7575+ disclaimer: the access is currently in whitelist-only mode.
7676+ you might not be able to connect
7777+ </p>
7478 <span class="select-none">handle:</span>
7579 <input
7680 ref={handleInputRef}