fix partey timeslot share field

This commit is contained in:
2021-11-17 20:18:26 +01:00
parent 3bcc0efe0d
commit 430d1c731d
@@ -57,15 +57,15 @@ public class TimeslotController extends BaseController {
/** /**
* Gets the timeslots. * Gets the timeslots.
* *
* @param pageParameter the page parameter * @param pageParameter the page parameter
* @param sizeParameter the size parameter * @param sizeParameter the size parameter
* @param sortParameter the sort parameter * @param sortParameter the sort parameter
* @param descParameter the desc parameter * @param descParameter the desc parameter
* @param ownerParameter the owner parameter * @param ownerParameter the owner parameter
* @param afterParameter the after parameter * @param afterParameter the after parameter
* @param typeParameter the type parameter * @param typeParameter the type parameter
* @param visibilityParameter the visibility parameter * @param visibilityParameter the visibility parameter
* @param searchParameter the search parameter * @param searchParameter the search parameter
* @return the timeslots * @return the timeslots
*/ */
@PreAuthorize("isAuthenticated()") @PreAuthorize("isAuthenticated()")
@@ -114,6 +114,7 @@ public class TimeslotController extends BaseController {
timeslot.setSecret(null); timeslot.setSecret(null);
timeslot.setStream(null); timeslot.setStream(null);
timeslot.setOwner(null); timeslot.setOwner(null);
timeslot.setShare(null);
} }
} }