Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 817 Bytes

File metadata and controls

15 lines (9 loc) · 817 Bytes

Permissions

English | 简体中文

Shows how an application passes trusted user identity to the collaboration service and protects Unit reads, real-time rooms, and changeset submission on the server.

pnpm example:permissions

Open http://127.0.0.1:3010. The page provides two fixed demo accounts: editor can edit, while viewer can only read. Switching accounts writes a local demo Cookie; production applications should replace it with their own Session or Bearer token.

Identity extraction, both roles, and every permission check are written sequentially in server/main.ts. All authorization decisions happen on the server; frontend hints are not a security boundary.

The collaborative Unit is stored in .data/collaboration.sqlite and reused after a server restart.