Remove owned profile and owned todo in automatic account deletion

pull/1/head
yflory 2018-04-04 17:24:26 +02:00
parent f276915712
commit 2381dd0e39
1 changed files with 6 additions and 0 deletions

View File

@ -436,6 +436,12 @@ define([
list.push(Hash.hrefToHexChannelId(data.href));
}
});
if (store.proxy.todo) {
list.push(Hash.hrefToHexChannelId('/todo/#' + store.proxy.todo));
}
if (store.proxy.profile && store.proxy.profile.edit) {
list.push(Hash.hrefToHexChannelId('/profile/#' + store.proxy.profile.edit));
}
return list;
};
var removeOwnedPads = function (waitFor) {