mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 06:34:39 -04:00
Add option to enable freely
permission in closed instance
Before, closed disallowed guest edits completely, by removing the `freely` permission. This makes it possible to explicitely bring back guest-editing, but not guest-note-creation, to closed instances. Signed-off-by: Dario Ernst <dario@kanojo.de>
This commit is contained in:
parent
40d1d75704
commit
6ae4b8bf13
7 changed files with 9 additions and 3 deletions
|
@ -781,7 +781,7 @@ function connection (socket) {
|
|||
var note = notes[noteId]
|
||||
// Only owner can change permission
|
||||
if (note.owner && note.owner === socket.request.user.id) {
|
||||
if (permission === 'freely' && !config.allowanonymous) return
|
||||
if (permission === 'freely' && !config.allowanonymous && !config.allowanonymousedits) return
|
||||
note.permission = permission
|
||||
models.Note.update({
|
||||
permission: permission
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue