Merge pull request #966 from nextcloud/stable9-1-link-share
[stable10] In cases where the server dictates the link share expirat…
This commit is contained in:
commit
1f473c11a1
|
@ -93,6 +93,7 @@
|
|||
this.$el.find('.expirationDateContainer').toggleClass('hidden', !state);
|
||||
if (!state) {
|
||||
// discard expiration date
|
||||
this.model.get('linkShare').expiration = '';
|
||||
this.model.saveLinkShare({
|
||||
expireDate: ''
|
||||
});
|
||||
|
@ -106,8 +107,10 @@
|
|||
$target.tooltip('hide');
|
||||
$target.removeClass('error');
|
||||
|
||||
expiration = moment($target.val(), 'DD-MM-YYYY').format('YYYY-MM-DD');
|
||||
this.model.get('linkShare').expiration = expiration;
|
||||
this.model.saveLinkShare({
|
||||
expiration: moment($target.val(), 'DD-MM-YYYY').format('YYYY-MM-DD')
|
||||
expiration: expiration
|
||||
}, {
|
||||
error: function(model, message) {
|
||||
if (!message) {
|
||||
|
|
Loading…
Reference in New Issue