hide settings for mentions_only notif for 1o1 chats

pull/1682/head
Audric Ackermann 4 years ago
parent 4a98d911a2
commit bf9a3e6fad
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -351,6 +351,14 @@ export class SessionConversation extends React.Component<Props, State> {
const members = conversation.get('members') || [];
// exclude mentions_only settings for private chats as this does not make much sense
const notificationForConvo = ConversationNotificationSetting.filter(n =>
conversation.isPrivate() ? n !== 'mentions_only' : true
).map((n: ConversationNotificationSettingType) => {
// this link to the notificationForConvo_all, notificationForConvo_mentions_only, ...
return { value: n, name: window.i18n(`notificationForConvo_${n}`) };
});
const headerProps = {
id: conversation.id,
name: conversation.getName(),
@ -373,12 +381,7 @@ export class SessionConversation extends React.Component<Props, State> {
name: item.getName(),
value: item.get('seconds'),
})),
notificationForConvo: ConversationNotificationSetting.map(
(n: ConversationNotificationSettingType) => {
// this link to the notificationForConvo_all, notificationForConvo_mentions_only, ...
return { value: n, name: window.i18n(`notificationForConvo_${n}`) };
}
),
notificationForConvo,
currentNotificationSetting: conversation.get('triggerNotificationsFor'),
hasNickname: !!conversation.getNickname(),
selectionMode: !!selectedMessages.length,

Loading…
Cancel
Save