Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function fetchListsBasedOnLabel(notification)
  2. {
  3. var label = new Notification(notification).addedLabel();
  4.  
  5. if(label.card().name() == "Project Configuration")
  6. {
  7. new Trellinator().board(label.name()).lists().each(function(list)
  8. {
  9. list.copy().move(label.card().board(),"bottom");
  10. });
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement