fixed bug
This commit is contained in:
parent
c84bacb59c
commit
e4f320f39c
|
@ -34,6 +34,7 @@ public class WorkspaceNotificationAddedItem extends WorkspaceNotification {
|
|||
this.userIdToNotify = userIdToNotify;
|
||||
this.item = item;
|
||||
this.folder = folder;
|
||||
this.type = WorkspaceNotificationType.ITEM_NEW;
|
||||
}
|
||||
|
||||
public String getUserIdToNotify() {
|
||||
|
|
|
@ -26,6 +26,7 @@ public class WorkspaceNotificationSharedFolder extends WorkspaceNotification {
|
|||
super();
|
||||
this.userIdToNotify = userIdToNotify;
|
||||
this.folder = folder;
|
||||
this.type = WorkspaceNotificationType.FOLDER_SHARE;
|
||||
}
|
||||
|
||||
public String getUserIdToNotify() {
|
||||
|
|
|
@ -36,6 +36,7 @@ public class WorkspaceNotificationUnsharedFolder extends WorkspaceNotification {
|
|||
this.userIdToNotify = userIdToNotify;
|
||||
this.unsharedFolderId = unsharedFolderId;
|
||||
this.unsharedFolderName = unsharedFolderName;
|
||||
this.type = WorkspaceNotificationType.FOLDER_UNSHARE;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue