Update to change the last change user saving strategy
This commit is contained in:
parent
93ff287799
commit
e94810ff94
1 changed files with 2 additions and 2 deletions
|
@ -602,8 +602,8 @@ function ifMayEdit(socket, callback) {
|
||||||
mayEdit = false;
|
mayEdit = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
//if user may edit and this note have owner (not anonymous usage)
|
//if user may edit and this is a text operation
|
||||||
if (socket.origin == 'operation' && mayEdit && note.owner) {
|
if (socket.origin == 'operation' && mayEdit) {
|
||||||
//save for the last change user id
|
//save for the last change user id
|
||||||
if (socket.request.user && socket.request.user.logged_in) {
|
if (socket.request.user && socket.request.user.logged_in) {
|
||||||
note.lastchangeuser = socket.request.user.id;
|
note.lastchangeuser = socket.request.user.id;
|
||||||
|
|
Loading…
Reference in a new issue