0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/core
Kevin Ansfield 071ab9774b
Added Admin API endpoint for basic member stats (#11840)
no issue

- moves members stats generation for the admin graph from the client to the server
- outputs a basic totals count across a requested date range of 30, 90, 365 days, or all time. See below for the response shape
- leaves heavy lifting of the counts to the SQL engines - tested on a dataset of 100k members and query performance is <100ms

```
GET /ghost/api/canary/members/stats/?days=30

{
    total: 100000,
    total_in_range: 20000,
    total_on_date: {
        '2020-04-25': 19000,
        '2020-04-26': 19500,
        // continues until today's date
    },
    new_today: 200
}
```
2020-05-26 10:38:42 +01:00
..
client@208198c166 Updated Ghost-Admin to v3.16.1 2020-05-20 07:30:34 +01:00
frontend Refactored common lib import to use destructuring (#11835) 2020-05-22 19:22:20 +01:00
server Added Admin API endpoint for basic member stats (#11840) 2020-05-26 10:38:42 +01:00
shared Added Router etc to shared/express + use everywhere 2020-05-01 19:32:57 +01:00
index.js Refactor common pattern in service files 2020-04-30 20:48:42 +01:00