Fixed additional note creation
This commit is contained in:
parent
ee3864e5ce
commit
20231003ae
@ -102,5 +102,6 @@ object Constants {
|
|||||||
val GUESTS_WAITING = "guests_waiting"
|
val GUESTS_WAITING = "guests_waiting"
|
||||||
val NOTE_ID = "note_id"
|
val NOTE_ID = "note_id"
|
||||||
val NOTES = "notes"
|
val NOTES = "notes"
|
||||||
|
val NOTE_NAME = "note_name"
|
||||||
val PATCH = "patch"
|
val PATCH = "patch"
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,7 @@ object SharedNotesMessageToJsonConverter {
|
|||||||
payload.put(Constants.MEETING_ID, msg.meetingID)
|
payload.put(Constants.MEETING_ID, msg.meetingID)
|
||||||
payload.put(Constants.RECORDED, msg.recorded)
|
payload.put(Constants.RECORDED, msg.recorded)
|
||||||
payload.put(Constants.REQUESTER_ID, msg.requesterID)
|
payload.put(Constants.REQUESTER_ID, msg.requesterID)
|
||||||
|
payload.put(Constants.NOTE_NAME, msg.noteName)
|
||||||
payload.put(Constants.NOTE_ID, msg.noteID)
|
payload.put(Constants.NOTE_ID, msg.noteID)
|
||||||
|
|
||||||
val header = Util.buildHeader(MessageNames.CREATE_ADDITIONAL_NOTES_REPLY, None)
|
val header = Util.buildHeader(MessageNames.CREATE_ADDITIONAL_NOTES_REPLY, None)
|
||||||
|
Loading…
Reference in New Issue
Block a user