pull/652/head
Beaudan Brown 5 years ago
parent bee5a89f14
commit 43a91ab672

@ -2001,26 +2001,22 @@
"banUser": {
"message": "Ban user",
"description":
"Ban user from public chat by public key."
"description": "Ban user from public chat by public key."
},
"banUserConfirm": {
"message": "Are you sure you want to ban user?",
"description":
"Message shown when confirming user ban."
"description": "Message shown when confirming user ban."
},
"userBanned": {
"message": "User successfully banned",
"description":
"Toast on succesful user ban."
"description": "Toast on succesful user ban."
},
"userBanFailed": {
"message": "User ban failed!",
"description":
"Toast on unsuccesful user ban."
"description": "Toast on unsuccesful user ban."
},
"copyChatId": {

@ -12,7 +12,6 @@
Whisper,
clipboard,
libloki,
lokiPublicChatAPI,
*/
/* eslint-disable more/no-then */
@ -656,8 +655,7 @@
!this.get('isPublic') ||
this.getConversation().isModerator(this.OUR_NUMBER) ||
this.getSource() === this.OUR_NUMBER,
hasModPerms:
this.getConversation().isModerator(this.OUR_NUMBER),
hasModPerms: this.getConversation().isModerator(this.OUR_NUMBER),
onCopyText: () => this.copyText(),
onSelectMessage: () => this.selectMessage(),
@ -981,18 +979,17 @@
const channelAPI = await conversation.getPublicSendData();
const success = await channelAPI.banUser(source);
if (success) {
window.Whisper.events.trigger('showToast', {
message: i18n('userBanned'),
});
}
else{
} else {
window.Whisper.events.trigger('showToast', {
message: i18n('userBanFailed'),
});
}
}
},
});
},

@ -545,10 +545,11 @@ class LokiPublicChannelAPI {
// TODO: poll for group members here?
}
async banUser(pubkey){
async banUser(pubkey) {
const res = await this.serverRequest(
`loki/v1/moderation/blacklist/@${pubkey}`, {
method: 'POST'
`loki/v1/moderation/blacklist/@${pubkey}`,
{
method: 'POST',
}
);

@ -964,10 +964,8 @@ export class Message extends React.PureComponent<Props, State> {
{i18n('copyPublicKey')}
</MenuItem>
) : null}
{(hasModPerms && isPublic) ? (
<MenuItem onClick={wrap(onBanUser)}>
{i18n('banUser')}
</MenuItem>
{hasModPerms && isPublic ? (
<MenuItem onClick={wrap(onBanUser)}>{i18n('banUser')}</MenuItem>
) : null}
</ContextMenu>
);

Loading…
Cancel
Save