Skip to content

Commit 2fece26

Browse files
committed
Fixed non-deterministic ordering in post analytics CSV export
The export query relied on the Post model's default orderDefaultRaw which uses a CASE expression that behaves differently across MySQL and SQLite. Added an explicit default order (published_at DESC, id DESC) to the exporter, and pinned published_at dates on test fixture posts to avoid timing-dependent ordering between runs.
1 parent 979cce3 commit 2fece26

File tree

3 files changed

+27
-22
lines changed

3 files changed

+27
-22
lines changed

ghost/core/core/server/services/posts/posts-exporter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class PostsExporter {
3535
async export({filter, order, limit}) {
3636
const posts = await this.#models.Post.findPage({
3737
filter: filter ?? 'status:published,status:sent',
38-
order,
38+
order: order ?? 'published_at DESC, id DESC',
3939
limit,
4040
withRelated: [
4141
'tiers',

ghost/core/test/e2e-api/admin/__snapshots__/post-analytics-export.test.js.snap

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Object {
1717
exports[`Post Analytics Export Default settings (all features enabled) Exports CSV with full analytics data 2 1`] = `
1818
Object {
1919
"text": "id,title,url,author,status,created_at,updated_at,published_at,featured,tags,post_access,email_recipients,newsletter_name,sends,opens,clicks,signups,paid_conversions,feedback_more_like_this,feedback_less_like_this
20+
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,,0,0,,
21+
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,,0,0,,
22+
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0,0,0
2023
000000000000000000000000,Start here for a quick overview of everything you need to know,http://127.0.0.1:2369/welcome/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,0,,
2124
000000000000000000000000,Customizing your brand and design settings,http://127.0.0.1:2369/design/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,0,,
22-
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0,0,0
23-
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,,0,0,,
24-
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,,0,0,,
2525
000000000000000000000000,\\"Writing and managing content in Ghost, an advanced guide\\",http://127.0.0.1:2369/write/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,0,,
2626
000000000000000000000000,Building your audience with subscriber signups,http://127.0.0.1:2369/portal/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,0,,
2727
000000000000000000000000,Selling premium memberships with recurring revenue,http://127.0.0.1:2369/sell/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Paid members-only,,,,,,0,0,,
@@ -52,11 +52,11 @@ Object {
5252
exports[`Post Analytics Export Settings variations Hides clicks column when email_track_clicks disabled 2 1`] = `
5353
Object {
5454
"text": "id,title,url,author,status,created_at,updated_at,published_at,featured,tags,post_access,email_recipients,newsletter_name,sends,opens,signups,paid_conversions,feedback_more_like_this,feedback_less_like_this
55+
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,0,0,,
56+
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,0,0,,
57+
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0,0
5558
000000000000000000000000,Start here for a quick overview of everything you need to know,http://127.0.0.1:2369/welcome/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,0,0,,
5659
000000000000000000000000,Customizing your brand and design settings,http://127.0.0.1:2369/design/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,0,0,,
57-
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0,0
58-
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,0,0,,
59-
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,0,0,,
6060
000000000000000000000000,\\"Writing and managing content in Ghost, an advanced guide\\",http://127.0.0.1:2369/write/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,0,0,,
6161
000000000000000000000000,Building your audience with subscriber signups,http://127.0.0.1:2369/portal/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,0,0,,
6262
000000000000000000000000,Selling premium memberships with recurring revenue,http://127.0.0.1:2369/sell/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Paid members-only,,,,,0,0,,
@@ -87,11 +87,11 @@ Object {
8787
exports[`Post Analytics Export Settings variations Hides email columns when members disabled 2 1`] = `
8888
Object {
8989
"text": "id,title,url,author,status,created_at,updated_at,published_at,featured,tags,post_access,newsletter_name
90+
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,
91+
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,
92+
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,
9093
000000000000000000000000,Start here for a quick overview of everything you need to know,http://127.0.0.1:2369/welcome/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,
9194
000000000000000000000000,Customizing your brand and design settings,http://127.0.0.1:2369/design/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,
92-
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,
93-
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,
94-
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,
9595
000000000000000000000000,\\"Writing and managing content in Ghost, an advanced guide\\",http://127.0.0.1:2369/write/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,
9696
000000000000000000000000,Building your audience with subscriber signups,http://127.0.0.1:2369/portal/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,
9797
000000000000000000000000,Selling premium memberships with recurring revenue,http://127.0.0.1:2369/sell/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Paid members-only,
@@ -122,11 +122,11 @@ Object {
122122
exports[`Post Analytics Export Settings variations Hides feedback columns when no newsletter has feedback enabled 2 1`] = `
123123
Object {
124124
"text": "id,title,url,author,status,created_at,updated_at,published_at,featured,tags,post_access,email_recipients,newsletter_name,sends,opens,clicks,signups,paid_conversions
125+
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,,0,0
126+
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,,0,0
127+
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0
125128
000000000000000000000000,Start here for a quick overview of everything you need to know,http://127.0.0.1:2369/welcome/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,0
126129
000000000000000000000000,Customizing your brand and design settings,http://127.0.0.1:2369/design/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,0
127-
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0
128-
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,,0,0
129-
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,,0,0
130130
000000000000000000000000,\\"Writing and managing content in Ghost, an advanced guide\\",http://127.0.0.1:2369/write/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,0
131131
000000000000000000000000,Building your audience with subscriber signups,http://127.0.0.1:2369/portal/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,0
132132
000000000000000000000000,Selling premium memberships with recurring revenue,http://127.0.0.1:2369/sell/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Paid members-only,,,,,,0,0
@@ -157,11 +157,11 @@ Object {
157157
exports[`Post Analytics Export Settings variations Hides opens column when email_track_opens disabled 2 1`] = `
158158
Object {
159159
"text": "id,title,url,author,status,created_at,updated_at,published_at,featured,tags,post_access,email_recipients,newsletter_name,sends,clicks,signups,paid_conversions,feedback_more_like_this,feedback_less_like_this
160+
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,0,0,,
161+
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,0,0,,
162+
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,0,0,0,0,0
160163
000000000000000000000000,Start here for a quick overview of everything you need to know,http://127.0.0.1:2369/welcome/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,0,0,,
161164
000000000000000000000000,Customizing your brand and design settings,http://127.0.0.1:2369/design/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,0,0,,
162-
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,0,0,0,0,0
163-
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,0,0,,
164-
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,0,0,,
165165
000000000000000000000000,\\"Writing and managing content in Ghost, an advanced guide\\",http://127.0.0.1:2369/write/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,0,0,,
166166
000000000000000000000000,Building your audience with subscriber signups,http://127.0.0.1:2369/portal/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,0,0,,
167167
000000000000000000000000,Selling premium memberships with recurring revenue,http://127.0.0.1:2369/sell/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Paid members-only,,,,,0,0,,
@@ -192,11 +192,11 @@ Object {
192192
exports[`Post Analytics Export Settings variations Hides paid_conversions when paid members disabled 2 1`] = `
193193
Object {
194194
"text": "id,title,url,author,status,created_at,updated_at,published_at,featured,tags,post_access,email_recipients,newsletter_name,sends,opens,clicks,signups,feedback_more_like_this,feedback_less_like_this
195+
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,,0,,
196+
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,,0,,
197+
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0,0
195198
000000000000000000000000,Start here for a quick overview of everything you need to know,http://127.0.0.1:2369/welcome/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,,
196199
000000000000000000000000,Customizing your brand and design settings,http://127.0.0.1:2369/design/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,,
197-
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0,0
198-
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,,0,,
199-
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,,0,,
200200
000000000000000000000000,\\"Writing and managing content in Ghost, an advanced guide\\",http://127.0.0.1:2369/write/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,,
201201
000000000000000000000000,Building your audience with subscriber signups,http://127.0.0.1:2369/portal/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,0,,
202202
000000000000000000000000,Selling premium memberships with recurring revenue,http://127.0.0.1:2369/sell/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Paid members-only,,,,,,0,,
@@ -227,11 +227,11 @@ Object {
227227
exports[`Post Analytics Export Settings variations Hides signups and paid_conversions when members_track_sources disabled 2 1`] = `
228228
Object {
229229
"text": "id,title,url,author,status,created_at,updated_at,published_at,featured,tags,post_access,email_recipients,newsletter_name,sends,opens,clicks,feedback_more_like_this,feedback_less_like_this
230+
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,,,
231+
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,,,
232+
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0
230233
000000000000000000000000,Start here for a quick overview of everything you need to know,http://127.0.0.1:2369/welcome/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,,
231234
000000000000000000000000,Customizing your brand and design settings,http://127.0.0.1:2369/design/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,,
232-
000000000000000000000000,Email Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published and emailed,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Public,Free subscribers,,64,45,0,0,0
233-
000000000000000000000000,Premium Tier Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Specific tiers: Default Product,,,,,,,
234-
000000000000000000000000,Members Only Post,http://127.0.0.1:2369/404/,Joe Bloggs,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,,Members-only,,,,,,,
235235
000000000000000000000000,\\"Writing and managing content in Ghost, an advanced guide\\",http://127.0.0.1:2369/write/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,,
236236
000000000000000000000000,Building your audience with subscriber signups,http://127.0.0.1:2369/portal/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Public,,,,,,,
237237
000000000000000000000000,Selling premium memberships with recurring revenue,http://127.0.0.1:2369/sell/,Ghost,published only,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,2050-01-01T00:00:00.000Z,false,Getting Started,Paid members-only,,,,,,,

0 commit comments

Comments
 (0)