We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b0f865a + 7830e9c commit e6ede18Copy full SHA for e6ede18
src/components/ConversationSettings/ConversationSettingsDialog.vue
@@ -49,7 +49,7 @@
49
{{ t('spreed', 'Always show the device preview screen before joining a call in this conversation.') }}
50
</NcCheckboxRadioSwitch>
51
52
- <NotificationsSettings :conversation="conversation" />
+ <NotificationsSettings v-if="!isGuest" :conversation="conversation" />
53
</NcAppSettingsSection>
54
55
<NcAppSettingsSection id="conversation-settings"
@@ -169,6 +169,10 @@ export default {
169
return this.conversation.canEnableSIP
170
},
171
172
+ isGuest() {
173
+ return this.$store.getters.getActorType() === 'guests'
174
+ },
175
+
176
token() {
177
return this.$store.getters.getConversationSettingsToken()
178
|| this.$store.getters.getToken()
0 commit comments