sudoroom / sudo-humans

hackerspace membership server
Other
37 stars 19 forks source link

Only up to 100 payments per month are counted :( #45

Closed Juul closed 8 years ago

Juul commented 8 years ago

The stripe api only lets you get 100 payments per api call: https://stripe.com/docs/api#list_charges

We will need to make a function that repeatedly calls this function until there are no more charges, until we do our counts of how many paying users/members we have will be wrong if there are more than 100.

Currently this information is shown by routes/collective_admin.js in the multi-collective version.

Juul commented 8 years ago

Fixed.