[Fixes: #12680] Republish image on changing profile settings
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
This commit is contained in:
parent
8d0bdf7c7f
commit
f50dcf53de
|
@ -135,6 +135,7 @@
|
||||||
"multiaccounts_getIdentityImage" {}
|
"multiaccounts_getIdentityImage" {}
|
||||||
"multiaccounts_storeIdentityImage" {}
|
"multiaccounts_storeIdentityImage" {}
|
||||||
"multiaccounts_deleteIdentityImage" {}
|
"multiaccounts_deleteIdentityImage" {}
|
||||||
|
"wakuext_changeIdentityImageShowTo" {}
|
||||||
"wakuext_createCommunity" {}
|
"wakuext_createCommunity" {}
|
||||||
"wakuext_editCommunity" {}
|
"wakuext_editCommunity" {}
|
||||||
"wakuext_createCommunityChat" {}
|
"wakuext_createCommunityChat" {}
|
||||||
|
|
|
@ -173,7 +173,11 @@
|
||||||
(fx/defn switch-profile-picture-show-to
|
(fx/defn switch-profile-picture-show-to
|
||||||
{:events [:multiaccounts.ui/profile-picture-show-to-switched]}
|
{:events [:multiaccounts.ui/profile-picture-show-to-switched]}
|
||||||
[cofx id]
|
[cofx id]
|
||||||
(multiaccounts.update/multiaccount-update cofx :profile-pictures-show-to id {}))
|
(fx/merge cofx
|
||||||
|
{::json-rpc/call [{:method "wakuext_changeIdentityImageShowTo"
|
||||||
|
:params [id]
|
||||||
|
:on-success #(log/debug "picture settings changed successfully")}]}
|
||||||
|
(multiaccounts.update/optimistic :profile-pictures-show-to id)))
|
||||||
|
|
||||||
(fx/defn switch-appearance-profile
|
(fx/defn switch-appearance-profile
|
||||||
{:events [:multiaccounts.ui/appearance-profile-switched]}
|
{:events [:multiaccounts.ui/appearance-profile-switched]}
|
||||||
|
|
|
@ -162,7 +162,11 @@
|
||||||
[react/view {:margin-top 8}
|
[react/view {:margin-top 8}
|
||||||
[ppst-radio-item constants/profile-pictures-show-to-everyone profile-pictures-show-to]
|
[ppst-radio-item constants/profile-pictures-show-to-everyone profile-pictures-show-to]
|
||||||
[ppst-radio-item constants/profile-pictures-show-to-contacts-only profile-pictures-show-to]
|
[ppst-radio-item constants/profile-pictures-show-to-contacts-only profile-pictures-show-to]
|
||||||
[ppst-radio-item constants/profile-pictures-show-to-none profile-pictures-show-to]]))
|
[ppst-radio-item constants/profile-pictures-show-to-none profile-pictures-show-to]
|
||||||
|
|
||||||
|
[react/view {:style {:margin-horizontal 16}}
|
||||||
|
[quo/text {:color :secondary}
|
||||||
|
(i18n/label :t/privacy-show-to-warning)]]]))
|
||||||
|
|
||||||
(defn ppvf-radio-item [id value]
|
(defn ppvf-radio-item [id value]
|
||||||
[quo/list-item
|
[quo/list-item
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"_comment": "Instead use: scripts/update-status-go.sh <rev>",
|
"_comment": "Instead use: scripts/update-status-go.sh <rev>",
|
||||||
"owner": "status-im",
|
"owner": "status-im",
|
||||||
"repo": "status-go",
|
"repo": "status-go",
|
||||||
"version": "v0.89.9",
|
"version": "v0.89.10",
|
||||||
"commit-sha1": "4e33e4679593c93a8a183f8326a279343e29307d",
|
"commit-sha1": "75aebd94aba4bdc45dcda96188aa9c8533facdca",
|
||||||
"src-sha256": "1286g2mn3vm7n2bmihr2jlkacvjrdyhppxd5mrkpdlj1asxwangj"
|
"src-sha256": "1p2vkj00j9m64cd1fhaa12657qxrz4ramshh1g4qm3c1yjkk3091"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1025,6 +1025,7 @@
|
||||||
"privacy-photos": "Profile Photo Privacy",
|
"privacy-photos": "Profile Photo Privacy",
|
||||||
"privacy-and-security": "Privacy and security",
|
"privacy-and-security": "Privacy and security",
|
||||||
"privacy-policy": "Privacy policy",
|
"privacy-policy": "Privacy policy",
|
||||||
|
"privacy-show-to-warning": "People who have already seen your profile picture will continue to do so",
|
||||||
"processing": "Just a moment",
|
"processing": "Just a moment",
|
||||||
"product-information": "Product Information",
|
"product-information": "Product Information",
|
||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
|
|
Loading…
Reference in New Issue