|
@@ -65,7 +65,8 @@ namespace GxPress.Repository.Implement
|
|
|
IsWords = false,
|
|
|
UserId = request.UserId,
|
|
|
GroupCategroyId = request.GroupCategroyId,
|
|
|
- LabelName=request.LabelName
|
|
|
+ LabelName = request.LabelName,
|
|
|
+ IsShow = request.IsShow
|
|
|
};
|
|
|
if (!string.IsNullOrEmpty(group.AvatarUrl))
|
|
|
group.AvatarUrl = StringUtils.RemoveDomain(group.AvatarUrl);
|
|
@@ -102,6 +103,8 @@ namespace GxPress.Repository.Implement
|
|
|
group.Introduce = request.Introduce;
|
|
|
if (!string.IsNullOrEmpty(request.LabelName))
|
|
|
group.LabelName = request.LabelName;
|
|
|
+ if (request.IsShow > 0)
|
|
|
+ group.IsShow = request.IsShow == 1;
|
|
|
return await _repository.UpdateAsync(group);
|
|
|
}
|
|
|
|