mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Added comment
property to posts in Content API
refs https://github.com/TryGhost/Team/issues/1695 This property can be used by theme developers to determine if comments are available for the currently logged in member. It follows the same logic as used internally in the comments helper, so that they can be used interchangeably
This commit is contained in:
parent
93694d837e
commit
467cf51b74
5 changed files with 85 additions and 11 deletions
|
@ -17,6 +17,8 @@ const postsMetaSchema = require('../../../../../../data/schema').tables.posts_me
|
|||
const getPostServiceInstance = require('../../../../../../services/posts/posts-service');
|
||||
const postsService = getPostServiceInstance();
|
||||
|
||||
const commentsService = require('../../../../../../services/comments');
|
||||
|
||||
module.exports = async (model, frame, options = {}) => {
|
||||
const {tiers: tiersData} = options || {};
|
||||
const extendedOptions = Object.assign(_.cloneDeep(frame.options), {
|
||||
|
@ -54,6 +56,15 @@ module.exports = async (model, frame, options = {}) => {
|
|||
if (utils.isContentAPI(frame)) {
|
||||
date.forPost(jsonModel);
|
||||
gating.forPost(jsonModel, frame);
|
||||
if (jsonModel.access) {
|
||||
if (commentsService?.api?.enabled !== 'off') {
|
||||
jsonModel.comments = true;
|
||||
} else {
|
||||
jsonModel.comments = false;
|
||||
}
|
||||
} else {
|
||||
jsonModel.comments = false;
|
||||
}
|
||||
}
|
||||
|
||||
// Transforms post/page metadata to flat structure
|
||||
|
|
|
@ -102,6 +102,10 @@ const post = (attrs, frame) => {
|
|||
if (columns && columns.includes('visibility') && fields && !fields.includes('visibility')) {
|
||||
delete attrs.visibility;
|
||||
}
|
||||
|
||||
if (fields && !fields.includes('comments')) {
|
||||
delete attrs.comments;
|
||||
}
|
||||
}
|
||||
|
||||
if (columns && columns.includes('email_segment') && fields && !fields.includes('email_segment')) {
|
||||
|
|
|
@ -9,6 +9,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e9",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -47,7 +48,7 @@ exports[`Pages Content API Can request page 2: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "1066",
|
||||
"content-length": "1083",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
@ -74,6 +75,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a78",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -112,6 +114,7 @@ Tip: If you're reading any post or page on your site and you notice something yo
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a79",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -155,6 +158,7 @@ If you prefer to use a contact form, almost all of the great embedded form servi
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a7b",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -194,6 +198,7 @@ Ghost is a non-profit organization, and we give away all our intellectual proper
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a7a",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -230,6 +235,7 @@ You can integrate any products, services, ads or integrations with Ghost yoursel
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e9",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -268,7 +274,7 @@ exports[`Pages Content API Can request pages 2: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "9064",
|
||||
"content-length": "9149",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
|
|
@ -19,6 +19,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a77",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "We've crammed the most important information to help you get started with Ghost into this one post. It's your cheat-sheet to get started, and your shortcut to advanced features.",
|
||||
"custom_template": null,
|
||||
|
@ -56,7 +57,7 @@ exports[`Posts Content API Can filter by published date 2: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "4559",
|
||||
"content-length": "4576",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
@ -83,6 +84,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a76",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "How to tweak a few settings in Ghost to transform your site from a generic template to a custom brand with style and personality.",
|
||||
"custom_template": null,
|
||||
|
@ -132,7 +134,7 @@ exports[`Posts Content API Can filter by published date 4: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "5850",
|
||||
"content-length": "5867",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
@ -159,6 +161,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a77",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "We've crammed the most important information to help you get started with Ghost into this one post. It's your cheat-sheet to get started, and your shortcut to advanced features.",
|
||||
"custom_template": null,
|
||||
|
@ -196,7 +199,7 @@ exports[`Posts Content API Can filter by published date 6: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "4560",
|
||||
"content-length": "4577",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
@ -255,6 +258,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e7",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -333,6 +337,7 @@ Definition listConsectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a77",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "We've crammed the most important information to help you get started with Ghost into this one post. It's your cheat-sheet to get started, and your shortcut to advanced features.",
|
||||
"custom_template": null,
|
||||
|
@ -400,6 +405,7 @@ Definition listConsectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a76",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "How to tweak a few settings in Ghost to transform your site from a generic template to a custom brand with style and personality.",
|
||||
"custom_template": null,
|
||||
|
@ -479,6 +485,7 @@ Definition listConsectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a75",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "A full overview of all the features built into the Ghost editor, including powerful workflow automations to speed up your creative process.",
|
||||
"custom_template": null,
|
||||
|
@ -546,6 +553,7 @@ Definition listConsectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a74",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "How Ghost allows you to turn anonymous readers into an audience of active subscribers, so you know what's working and what isn't.",
|
||||
"custom_template": null,
|
||||
|
@ -613,6 +621,7 @@ Definition listConsectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a73",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -697,6 +706,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a72",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "A guide to collaborating with other staff users to publish, and some resources to help you with the next steps of growing your business",
|
||||
"custom_template": null,
|
||||
|
@ -764,6 +774,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a71",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "Work with all your favorite apps and tools or create your own custom integrations using the Ghost API.",
|
||||
"custom_template": null,
|
||||
|
@ -832,6 +843,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e3",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -915,6 +927,7 @@ mctesters
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e1",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -984,6 +997,7 @@ Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac tu
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6df",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "This is my custom excerpt!",
|
||||
"custom_template": null,
|
||||
|
@ -1036,7 +1050,7 @@ exports[`Posts Content API Can filter posts by authors 2: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "54719",
|
||||
"content-length": "54906",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
@ -1063,6 +1077,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e7",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -1111,6 +1126,7 @@ Definition listConsectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e3",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -1206,6 +1222,7 @@ mctesters
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e1",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -1308,6 +1325,7 @@ Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac tu
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6df",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "This is my custom excerpt!",
|
||||
"custom_template": null,
|
||||
|
@ -1410,7 +1428,7 @@ exports[`Posts Content API Can filter posts by tag 2: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "13909",
|
||||
"content-length": "13977",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
@ -1438,6 +1456,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a77",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "We've crammed the most important information to help you get started with Ghost into this one post. It's your cheat-sheet to get started, and your shortcut to advanced features.",
|
||||
"custom_template": null,
|
||||
|
@ -1511,6 +1530,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a76",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "How to tweak a few settings in Ghost to transform your site from a generic template to a custom brand with style and personality.",
|
||||
"custom_template": null,
|
||||
|
@ -1596,6 +1616,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a75",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "A full overview of all the features built into the Ghost editor, including powerful workflow automations to speed up your creative process.",
|
||||
"custom_template": null,
|
||||
|
@ -1669,6 +1690,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a74",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "How Ghost allows you to turn anonymous readers into an audience of active subscribers, so you know what's working and what isn't.",
|
||||
"custom_template": null,
|
||||
|
@ -1742,6 +1764,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a73",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -1832,6 +1855,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a72",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "A guide to collaborating with other staff users to publish, and some resources to help you with the next steps of growing your business",
|
||||
"custom_template": null,
|
||||
|
@ -1905,6 +1929,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a71",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "Work with all your favorite apps and tools or create your own custom integrations using the Ghost API.",
|
||||
"custom_template": null,
|
||||
|
@ -1979,6 +2004,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e7",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -2043,6 +2069,7 @@ Definition listConsectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e3",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -2132,6 +2159,7 @@ mctesters
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e1",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -2207,6 +2235,7 @@ Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac tu
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6df",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "This is my custom excerpt!",
|
||||
"custom_template": null,
|
||||
|
@ -2281,7 +2310,7 @@ exports[`Posts Content API Can include relations 2: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "65048",
|
||||
"content-length": "65235",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
@ -2298,6 +2327,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6df",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "This is my custom excerpt!",
|
||||
"custom_template": null,
|
||||
|
@ -2335,7 +2365,7 @@ exports[`Posts Content API Can request a single post 2: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "2345",
|
||||
"content-length": "2362",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
@ -2424,6 +2454,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a77",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "We've crammed the most important information to help you get started with Ghost into this one post. It's your cheat-sheet to get started, and your shortcut to advanced features.",
|
||||
"custom_template": null,
|
||||
|
@ -2459,6 +2490,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a76",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "How to tweak a few settings in Ghost to transform your site from a generic template to a custom brand with style and personality.",
|
||||
"custom_template": null,
|
||||
|
@ -2506,6 +2538,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a75",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "A full overview of all the features built into the Ghost editor, including powerful workflow automations to speed up your creative process.",
|
||||
"custom_template": null,
|
||||
|
@ -2541,6 +2574,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a74",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "How Ghost allows you to turn anonymous readers into an audience of active subscribers, so you know what's working and what isn't.",
|
||||
"custom_template": null,
|
||||
|
@ -2576,6 +2610,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a73",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -2628,6 +2663,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a72",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "A guide to collaborating with other staff users to publish, and some resources to help you with the next steps of growing your business",
|
||||
"custom_template": null,
|
||||
|
@ -2663,6 +2699,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a71",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "Work with all your favorite apps and tools or create your own custom integrations using the Ghost API.",
|
||||
"custom_template": null,
|
||||
|
@ -2699,6 +2736,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e7",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -2745,6 +2783,7 @@ Definition listConsectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e3",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -2796,6 +2835,7 @@ mctesters
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e1",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -2833,6 +2873,7 @@ Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac tu
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6df",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "This is my custom excerpt!",
|
||||
"custom_template": null,
|
||||
|
@ -2870,7 +2911,7 @@ exports[`Posts Content API Can request posts 2: [headers] 1`] = `
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "46167",
|
||||
"content-length": "46354",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
@ -2897,6 +2938,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a77",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "We've crammed the most important information to help you get started with Ghost into this one post. It's your cheat-sheet to get started, and your shortcut to advanced features.",
|
||||
"custom_template": null,
|
||||
|
@ -2932,6 +2974,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a76",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "How to tweak a few settings in Ghost to transform your site from a generic template to a custom brand with style and personality.",
|
||||
"custom_template": null,
|
||||
|
@ -2979,6 +3022,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a75",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "A full overview of all the features built into the Ghost editor, including powerful workflow automations to speed up your creative process.",
|
||||
"custom_template": null,
|
||||
|
@ -3014,6 +3058,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a74",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "How Ghost allows you to turn anonymous readers into an audience of active subscribers, so you know what's working and what isn't.",
|
||||
"custom_template": null,
|
||||
|
@ -3049,6 +3094,7 @@ Object {
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a73",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -3101,6 +3147,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a72",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "A guide to collaborating with other staff users to publish, and some resources to help you with the next steps of growing your business",
|
||||
"custom_template": null,
|
||||
|
@ -3136,6 +3183,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "6194d3ce51e2700162531a71",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "Work with all your favorite apps and tools or create your own custom integrations using the Ghost API.",
|
||||
"custom_template": null,
|
||||
|
@ -3172,6 +3220,7 @@ Most successful subscription businesses publish a mix of free and paid posts to
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e7",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -3218,6 +3267,7 @@ Definition listConsectetur adipisicing elit, sed do eiusmod tempor incididunt ut
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e3",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -3269,6 +3319,7 @@ mctesters
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6e1",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": null,
|
||||
"custom_template": null,
|
||||
|
@ -3306,6 +3357,7 @@ Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac tu
|
|||
"codeinjection_foot": null,
|
||||
"codeinjection_head": null,
|
||||
"comment_id": "618ba1ffbe2896088840a6df",
|
||||
"comments": false,
|
||||
"created_at": StringMatching /\\\\d\\{4\\}-\\\\d\\{2\\}-\\\\d\\{2\\}T\\\\d\\{2\\}:\\\\d\\{2\\}:\\\\d\\{2\\}\\\\\\.000\\\\\\+\\\\d\\{2\\}:\\\\d\\{2\\}/,
|
||||
"custom_excerpt": "This is my custom excerpt!",
|
||||
"custom_template": null,
|
||||
|
@ -3343,7 +3395,7 @@ exports[`Posts Content API Can request posts from different origin 2: [headers]
|
|||
Object {
|
||||
"access-control-allow-origin": "*",
|
||||
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
||||
"content-length": "46167",
|
||||
"content-length": "46354",
|
||||
"content-type": "application/json; charset=utf-8",
|
||||
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
||||
"vary": "Accept-Encoding",
|
||||
|
|
|
@ -34,6 +34,7 @@ const expectedProperties = {
|
|||
'url',
|
||||
'excerpt',
|
||||
'access',
|
||||
'comments',
|
||||
'og_image',
|
||||
'og_title',
|
||||
'og_description',
|
||||
|
|
Loading…
Add table
Reference in a new issue