HarshdipD / eztrackr

v3 of Eztrackr's Chrome extension. Designed to ease your job hunt by adding your jobs in an organized Trello board ✨
https://hsdeogan.com/eztrackr/
GNU General Public License v3.0
24 stars 11 forks source link

Delete existing lists #25

Closed HarshdipD closed 4 years ago

HarshdipD commented 4 years ago

This is a good first issue for the introduction to Trello API.

When a user uses the extension for the first time, the extension creates a board for them with 5 lists:

  1. Wishlist
  2. Applied
  3. In Progress
  4. Offer
  5. Rejected

However, Trello POST request for creating board has 3 lists that are automatically created - To do, Done, Doing.

We need to somehow delete these existing lists before we send a POST request to create the above desired 5 lists. I'm guessing the easiest way is to send a delete request but there might be a better way within API docs.

If you're interested in this issue, please comment below before you fork and start working!

derekdkim commented 4 years ago

Mind if I try my hand at this issue?

HarshdipD commented 4 years ago

@derekdkim go ahead!

derekdkim commented 4 years ago

Hi there, it looks like there wasn't a need to delete it in the first place. There's an option to just not add the default lists when you post the board.