Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function scheduleMoveOnComment(notification,signature)
  2. {
  3. var added = new Notification(notification).addedComment().card();
  4. ExecutionQueue.clear(signature);
  5. ExecutionQueue.push("moveInactiveCard",{id: added.id()},signature,Trellinator.now().addDays(5));
  6. }
  7.  
  8. function moveInactiveCard(card)
  9. {
  10. new Card(card).moveTo("Hold");
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement