hotfix?
This commit is contained in:
parent
f92b300c1c
commit
2af3b8cd63
@ -7,8 +7,6 @@ import java.time.Instant;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import javax.transaction.Transactional;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.http.HttpStatus;
|
||||
@ -84,7 +82,6 @@ public class InviteController extends BaseController {
|
||||
* @return the invite
|
||||
*/
|
||||
@GetMapping("/{code}")
|
||||
@Transactional
|
||||
public Invite get(@PathVariable("code") String code) {
|
||||
Invite invite = inviteManager.getByCode(code);
|
||||
if (invite == null) {
|
||||
@ -92,12 +89,10 @@ public class InviteController extends BaseController {
|
||||
}
|
||||
|
||||
if (getCurrentUserId() == null) {
|
||||
invite.setId(null);
|
||||
invite.setItem(null);
|
||||
invite.setNote(null);
|
||||
invite.setOwner(null);
|
||||
} else if (!getCurrentUserId().equals(invite.getOwner())) {
|
||||
invite.setId(null);
|
||||
invite.setCode(null);
|
||||
invite.setCodeLink(null);
|
||||
invite.setOwner(null);
|
||||
@ -272,7 +267,6 @@ public class InviteController extends BaseController {
|
||||
pageParameter.orElse(0), sizeParameter.orElse(10), searchParameter.orElse(null),
|
||||
redeemedParameter.orElse(null));
|
||||
for (Invite invite : page.getContent()) {
|
||||
invite.setId(null);
|
||||
invite.setCode(null);
|
||||
invite.setCodeLink(null);
|
||||
invite.setMessage(null);
|
||||
|
Loading…
Reference in New Issue
Block a user