|
|
@@ -83,6 +83,7 @@ public class ShowroomService {
|
|
|
showroom.setUserId(userId);
|
|
|
showroom.setShowroomBg(asset.getShowroomBg());
|
|
|
showroom.setMaxCollection(asset.getMaxCollection());
|
|
|
+ showroom.setNickname(asset.getOwnerName());
|
|
|
Showroom show = showroomRepo.save(showroom);
|
|
|
|
|
|
showCollections.forEach(showCollection -> {
|
|
|
@@ -118,6 +119,7 @@ public class ShowroomService {
|
|
|
.publish(false)
|
|
|
.userId(asset.getUserId())
|
|
|
.assetId(asset.getId())
|
|
|
+ .nickname(asset.getOwnerName())
|
|
|
.build();
|
|
|
|
|
|
|