Test all shared folders with getDeletedPads because of editable metadata
This commit is contained in:
parent
ec2b5dd01f
commit
8ff4e2fd8e
@ -1793,13 +1793,18 @@ define([
|
||||
// the server.
|
||||
nThen(function (waitFor) {
|
||||
var edPublic = store.proxy.edPublic;
|
||||
var checkExpired = Object.keys(shared).filter(function (fId) {
|
||||
/*var checkExpired = Object.keys(shared).filter(function (fId) {
|
||||
var d = shared[fId];
|
||||
return (Array.isArray(d.owners) && d.owners.length &&
|
||||
(!edPublic || d.owners.indexOf(edPublic) === -1))
|
||||
|| (d.expire && d.expire < (+new Date()));
|
||||
}).map(function (fId) {
|
||||
return shared[fId].channel;
|
||||
});*/
|
||||
// XXX test: we probably shouldn't filter shared folder anymore here because
|
||||
// the owner or the expiration time can change, so they can all be deleted
|
||||
var checkExpired = Object.keys(shared).map(function (fId) {
|
||||
return shared[fId].channel;
|
||||
});
|
||||
Store.getDeletedPads(null, {list: checkExpired}, waitFor(function (chans) {
|
||||
if (chans && chans.error) { return void console.error(chans.error); }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user