Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 30 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@nextcloud/moment": "^1.2.1",
"@nextcloud/paths": "^2.1.0",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^7.1.0-beta.0",
"@nextcloud/vue": "^7.1.0-beta.1",
"@nextcloud/vue-dashboard": "^2.0.1",
"@nextcloud/vue-richtext": "^2.0.3",
"attachmediastream": "^2.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,23 @@
<template v-if="page === 0">
<SetConversationName v-model="conversationNameInput"
@click-enter="handleEnter" />
<NcCheckboxRadioSwitch :checked.sync="isPublic">
<NcCheckboxRadioSwitch :checked.sync="isPublic"
type="switch">
{{ t('spreed', 'Allow guests to join via link') }}
</NcCheckboxRadioSwitch>
<!-- Password protection -->
<template v-if="isPublic">
<NcCheckboxRadioSwitch :checked.sync="passwordProtect"
type="switch"
@checked="handleCheckboxInput">
{{ t('spreed', 'Password protect') }}
</NcCheckboxRadioSwitch>
<PasswordProtect v-if="passwordProtect"
v-model="password" />
<NcPasswordField v-if="passwordProtect"
autocomplete="new-password"
:check-password-strength="true"
:label-visible="true"
:label="t('spreed', 'Enter password')"
:value.sync="password" />
</template>
<ListableSettings v-model="listable" />
</template>
Expand Down Expand Up @@ -120,6 +126,7 @@
import { CONVERSATION } from '../../../constants.js'
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import NcModal from '@nextcloud/vue/dist/Components/NcModal.js'
import NcPasswordField from '@nextcloud/vue/dist/Components/NcPasswordField.js'
import NcCheckboxRadioSwitch from '@nextcloud/vue/dist/Components/NcCheckboxRadioSwitch.js'
import Plus from 'vue-material-design-icons/Plus.vue'
import SetContacts from './SetContacts/SetContacts.vue'
Expand All @@ -132,7 +139,6 @@ import {
setConversationPassword,
} from '../../../services/conversationsService.js'
import { generateUrl } from '@nextcloud/router'
import PasswordProtect from './PasswordProtect/PasswordProtect.vue'
import ListableSettings from '../../ConversationSettings/ListableSettings.vue'
import isInCall from '../../../mixins/isInCall.js'
import participant from '../../../mixins/participant.js'
Expand All @@ -149,12 +155,12 @@ export default {

components: {
NcModal,
NcPasswordField,
SetContacts,
SetConversationName,
NcButton,
NcCheckboxRadioSwitch,
Confirmation,
PasswordProtect,
ListableSettings,
Plus,
},
Expand Down

This file was deleted.