fix(communities): Fix broken `Request to join required` property
Closes: #6073
This commit is contained in:
parent
8f4e9bb3da
commit
58eff9adf2
|
@ -84,9 +84,8 @@ proc editCommunity*(
|
||||||
): RpcResponse[JsonNode] {.raises: [Exception].} =
|
): RpcResponse[JsonNode] {.raises: [Exception].} =
|
||||||
let bannerImage = newCroppedImage(bannerJsonStr)
|
let bannerImage = newCroppedImage(bannerJsonStr)
|
||||||
result = callPrivateRPC("editCommunity".prefix, %*[{
|
result = callPrivateRPC("editCommunity".prefix, %*[{
|
||||||
# TODO this will need to be renamed membership (small m)
|
|
||||||
"CommunityID": communityId,
|
"CommunityID": communityId,
|
||||||
"Membership": access,
|
"membership": access,
|
||||||
"name": name,
|
"name": name,
|
||||||
"description": description,
|
"description": description,
|
||||||
"introMessage": introMessage,
|
"introMessage": introMessage,
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 4f722b6fe8215fa02f54e02cb454b402e1728c8f
|
Subproject commit 80631526574c1607b98d1330ac659019ebb003c1
|
Loading…
Reference in New Issue