Skip to content

Commit

Permalink
In cases where the server dictates the link share expiration the date…
Browse files Browse the repository at this point in the history
… is not updated on consequitive changes and enable/disable actions
  • Loading branch information
DeepDiver1975 authored and LukasReschke committed Aug 29, 2016
1 parent d2d1508 commit 5856616
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/js/sharedialogexpirationview.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: ''
});
Expand All @@ -104,8 +105,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) {
Expand Down

0 comments on commit 5856616

Please sign in to comment.