Merge pull request #26026 from nextcloud/backport/25933/stable21
[stable21] Hide expiration date field for remote shares
This commit is contained in:
commit
cc48b81411
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -84,14 +84,16 @@
|
||||||
</ActionCheckbox>
|
</ActionCheckbox>
|
||||||
|
|
||||||
<!-- expiration date -->
|
<!-- expiration date -->
|
||||||
<ActionCheckbox :checked.sync="hasExpirationDate"
|
<ActionCheckbox
|
||||||
|
v-if="canHaveExpirationDate"
|
||||||
|
:checked.sync="hasExpirationDate"
|
||||||
:disabled="config.isDefaultInternalExpireDateEnforced || saving"
|
:disabled="config.isDefaultInternalExpireDateEnforced || saving"
|
||||||
@uncheck="onExpirationDisable">
|
@uncheck="onExpirationDisable">
|
||||||
{{ config.isDefaultInternalExpireDateEnforced
|
{{ config.isDefaultInternalExpireDateEnforced
|
||||||
? t('files_sharing', 'Expiration date enforced')
|
? t('files_sharing', 'Expiration date enforced')
|
||||||
: t('files_sharing', 'Set expiration date') }}
|
: t('files_sharing', 'Set expiration date') }}
|
||||||
</ActionCheckbox>
|
</ActionCheckbox>
|
||||||
<ActionInput v-if="hasExpirationDate"
|
<ActionInput v-if="canHaveExpirationDate && hasExpirationDate"
|
||||||
ref="expireDate"
|
ref="expireDate"
|
||||||
v-tooltip.auto="{
|
v-tooltip.auto="{
|
||||||
content: errors.expireDate,
|
content: errors.expireDate,
|
||||||
|
@ -222,8 +224,16 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
canHaveNote() {
|
canHaveNote() {
|
||||||
return this.share.type !== this.SHARE_TYPES.SHARE_TYPE_REMOTE
|
return !this.isRemoteShare
|
||||||
&& this.share.type !== this.SHARE_TYPES.SHARE_TYPE_REMOTE_GROUP
|
},
|
||||||
|
|
||||||
|
canHaveExpirationDate() {
|
||||||
|
return !this.isRemoteShare
|
||||||
|
},
|
||||||
|
|
||||||
|
isRemoteShare() {
|
||||||
|
return this.share.type === this.SHARE_TYPES.SHARE_TYPE_REMOTE
|
||||||
|
|| this.share.type === this.SHARE_TYPES.SHARE_TYPE_REMOTE_GROUP
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue