From a16bde70bec9c8948cd6ca799f85429c6a9c7a7c Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Tue, 10 Oct 2017 00:25:35 +0200 Subject: [PATCH] Provide table for permissions Signed-off-by: Sheogorath --- public/docs/features.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/public/docs/features.md b/public/docs/features.md index b64b988..a894c08 100644 --- a/public/docs/features.md +++ b/public/docs/features.md @@ -47,12 +47,15 @@ or import content from your **clipboard** , and t It is possible to change the access permission to a note through the little button on the top right of the view. There are four possible options: - **Freely**: Anyone can edit this note. - **Editable**: A signed-in user can edit this note. - **Limited**: People have to sign-in to view and edit this note. - **Locked**: Anyone can view this note but only the owner can edit it. - **Protected**: People have to sign-in to view this note but only owner can edit. - **Private**: Only the owner can view and edit this note. +| |Owner read/write|Signed-in read|Signed-in write|Guest read|Guest write| +|:-----------------------------|:--------------:|:------------:|:-------------:|:--------:|:---------:| +| **Freely** |✔|✔|✔|✔|✔| +| **Editable** |✔|✔|✔|✔|✖| +| **Limited** |✔|✔|✔|✖|✖| +| **Locked** |✔|✔|✖|✔|✖| +| **Protected** |✔|✔|✖|✖|✖| +| **Private** |✔|✖|✖|✖|✖| + **Only the owner of the note can change the note's permissions.**