Fixed additional note creation

This commit is contained in:
Pedro Beschorner Marin 2015-12-03 16:19:24 +00:00
parent ee3864e5ce
commit 20231003ae
2 changed files with 2 additions and 0 deletions

View File

@ -102,5 +102,6 @@ object Constants {
val GUESTS_WAITING = "guests_waiting"
val NOTE_ID = "note_id"
val NOTES = "notes"
val NOTE_NAME = "note_name"
val PATCH = "patch"
}

View File

@ -34,6 +34,7 @@ object SharedNotesMessageToJsonConverter {
payload.put(Constants.MEETING_ID, msg.meetingID)
payload.put(Constants.RECORDED, msg.recorded)
payload.put(Constants.REQUESTER_ID, msg.requesterID)
payload.put(Constants.NOTE_NAME, msg.noteName)
payload.put(Constants.NOTE_ID, msg.noteID)
val header = Util.buildHeader(MessageNames.CREATE_ADDITIONAL_NOTES_REPLY, None)