wizonesolutions / habitrpg-todo-sync

HabitRPG Todo Synchronization
22 stars 3 forks source link

Implement last_sync parameter #3

Closed wizonesolutions closed 11 years ago

wizonesolutions commented 11 years ago

rtm.tasks.getList has a neat little parameter it takes called last_sync. This ensures you only get new tasks, modified tasks, and deleted tasks since the last time you pulled data.

This is quite neat and means we'll be able to operate incrementally on todos. It means we won't have to do manual comparisons for RTM-side updates; RTM will simply tell us what changed! Then we just funnel it in on our side.

So this is something to do soon.