Skip to content

Commit

Permalink
Merge pull request #40533 from nextcloud/40493-auto-suggest-password
Browse files Browse the repository at this point in the history
Auto set password for new email shares
  • Loading branch information
nfebe authored Sep 26, 2023
2 parents 23a2e34 + a361335 commit 09b1c85
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 10 deletions.
12 changes: 9 additions & 3 deletions apps/files_sharing/src/views/SharingDetailsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -683,11 +683,17 @@ export default {
this.revertSharingPermission = !isCustomPermissions ? selectedPermission : 'custom'
this.setCustomPermissions = isCustomPermissions
},
initializeAttributes() {
async initializeAttributes() {
let hasAdvancedAttributes = false
if (this.isNewShare) return
if (this.isNewShare) {
if (this.isPasswordEnforced && this.isPublicShare) {
this.share.newPassword = await GeneratePassword()
this.advancedSectionAccordionExpanded = true
}
return
}
let hasAdvancedAttributes = false
if (this.isValidShareAttribute(this.share.note)) {
this.writeNoteToRecipientIsChecked = true
hasAdvancedAttributes = true
Expand Down
3 changes: 3 additions & 0 deletions dist/1567-1567.js

Large diffs are not rendered by default.

File renamed without changes.
1 change: 1 addition & 0 deletions dist/1567-1567.js.map

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions dist/188-188.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/188-188.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions dist/files_sharing-files_sharing_tab.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/files_sharing-files_sharing_tab.js.map

Large diffs are not rendered by default.

0 comments on commit 09b1c85

Please sign in to comment.