broadcast note list on perm update - zeppelin-1438

This commit is contained in:
Khalid Huseynov 2016-09-27 12:56:29 +09:00
parent 9cf1d8848e
commit a2ce268891

View file

@ -162,6 +162,7 @@ public class NotebookRestApi {
AuthenticationInfo subject = new AuthenticationInfo(SecurityUtils.getPrincipal());
note.persist(subject);
notebookServer.broadcastNote(note);
notebookServer.broadcastNoteList(subject);
return new JsonResponse<>(Status.OK).build();
}