client/src/actions/notesActions.js
changeset 78 49c5ea36d0a4
parent 74 043477fd5c5c
child 79 772b73e31069
equal deleted inserted replaced
77:cd27d9fc1c73 78:49c5ea36d0a4
    11     plain: data.plain,
    11     plain: data.plain,
    12     html: data.html,
    12     html: data.html,
    13     startedAt: data.startedAt,
    13     startedAt: data.startedAt,
    14     finishedAt: data.finishedAt,
    14     finishedAt: data.finishedAt,
    15     categories: data.categories,
    15     categories: data.categories,
       
    16     marginComment: data.marginComment,
    16   };
    17   };
    17 
    18 
    18   const noteSrvr = {
    19   const noteSrvr = {
    19     ext_id: noteId,
    20     ext_id: noteId,
    20     session: session._id,
    21     session: session._id,
    38         },
    39         },
    39         commit: { type: types.NOOP },
    40         commit: { type: types.NOOP },
    40         rollback: { type: types.NOOP }
    41         rollback: { type: types.NOOP }
    41       }
    42       }
    42     }
    43     }
    43 
       
    44   };
    44   };
    45 }
    45 }