mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
fixes https://github.com/TryGhost/Team/issues/1652 fixes https://github.com/TryGhost/Ghost/issues/13319 **Image formatting** Added support for changing the format of images via the `handle-image-sizes` middleware (e.g. format SVG to png, jpeg, webp) This change was required: - Not all browsers support SVG favicons, so we need to convert them to PNGs - We can't fit image resizing and formatting in the `serve-favicon` middleware: we need to store the resized image to avoid resizing on every request. This system was already present in the `handle-image-sizes` middleware. To format an uploaded image: - Original URL: https://localhost/blog/content/images/2022/05/giphy.gif - To resize: https://localhost/blog/content/images/size/w256h256/2022/05/giphy.gif (already supported) - To resize and format to webp: https://localhost/blog/content/images/size/w256h256/format/webp/2022/05/giphy.gif - Animations are preserved when converting Gifs to Webp and in reverse, and also when only resizing (https://github.com/TryGhost/Ghost/issues/13319) **Favicons** - Custom favicons are no longer served via `/favicon.png` or `/favicon.ico` (only for default favicon), but use their full path - Added support for uploading more image extensions in Ghost as a favicon: .jpg, .jpeg, .gif, .webp and .svg are now supported (already supported .png and .ico). - File extensions other than jpg/jpeg, png, or ico will always get transformed to the image/png format to guarantee browser support (webp and svg images are not yet supported as favicons by all browsers). For all image formats, other than .ico files: - Allowed to upload images larger than 1000px in width and height, they will get cropped to 256x256px. - Allowed uploading favicons that are not square. They will get cropped automatically. - Allowed to upload larger files, up to 20MB (will get served at a lower file size after being resized) For .svg files: - The minimum size of 60x60px is no longer required. For .ico files: - The file size limit is increased to 200kb (coming from 100kb)
1268 lines
29 KiB
Text
1268 lines
29 KiB
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Settings API Browse Can request all settings 1: [body] 1`] = `
|
|
Object {
|
|
"meta": Object {},
|
|
"settings": Array [
|
|
Object {
|
|
"key": "title",
|
|
"value": "Ghost",
|
|
},
|
|
Object {
|
|
"key": "description",
|
|
"value": "Thoughts, stories and ideas",
|
|
},
|
|
Object {
|
|
"key": "logo",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "cover_image",
|
|
"value": "https://static.ghost.org/v4.0.0/images/publication-cover.jpg",
|
|
},
|
|
Object {
|
|
"key": "icon",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "accent_color",
|
|
"value": "#FF1A75",
|
|
},
|
|
Object {
|
|
"key": "locale",
|
|
"value": "en",
|
|
},
|
|
Object {
|
|
"key": "timezone",
|
|
"value": "Etc/UTC",
|
|
},
|
|
Object {
|
|
"key": "codeinjection_head",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "codeinjection_foot",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "facebook",
|
|
"value": "ghost",
|
|
},
|
|
Object {
|
|
"key": "twitter",
|
|
"value": "@ghost",
|
|
},
|
|
Object {
|
|
"key": "navigation",
|
|
"value": "[{\\"label\\":\\"Home\\",\\"url\\":\\"/\\"},{\\"label\\":\\"About\\",\\"url\\":\\"/about/\\"},{\\"label\\":\\"Collection\\",\\"url\\":\\"/tag/getting-started/\\"},{\\"label\\":\\"Author\\",\\"url\\":\\"/author/ghost/\\"},{\\"label\\":\\"Portal\\",\\"url\\":\\"/portal/\\"}]",
|
|
},
|
|
Object {
|
|
"key": "secondary_navigation",
|
|
"value": "[{\\"label\\":\\"Data & privacy\\",\\"url\\":\\"/privacy/\\"},{\\"label\\":\\"Contact\\",\\"url\\":\\"/contact/\\"},{\\"label\\":\\"Contribute →\\",\\"url\\":\\"/contribute/\\"}]",
|
|
},
|
|
Object {
|
|
"key": "meta_title",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "meta_description",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "og_image",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "og_title",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "og_description",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "twitter_image",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "twitter_title",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "twitter_description",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "active_theme",
|
|
"value": "casper",
|
|
},
|
|
Object {
|
|
"key": "is_private",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "password",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "public_hash",
|
|
"value": StringMatching /\\[a-z0-9\\]\\{30\\}/,
|
|
},
|
|
Object {
|
|
"key": "default_content_visibility",
|
|
"value": "public",
|
|
},
|
|
Object {
|
|
"key": "default_content_visibility_tiers",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "members_signup_access",
|
|
"value": "all",
|
|
},
|
|
Object {
|
|
"key": "members_support_address",
|
|
"value": "noreply",
|
|
},
|
|
Object {
|
|
"key": "stripe_secret_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_publishable_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_plans",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_publishable_key",
|
|
"value": "pk_test_for_stripe",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_secret_key",
|
|
"value": "••••••••",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_livemode",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_display_name",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_account_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "members_monthly_price_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "members_yearly_price_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "portal_name",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "portal_button",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "portal_plans",
|
|
"value": "[\\"free\\"]",
|
|
},
|
|
Object {
|
|
"key": "portal_products",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "portal_button_style",
|
|
"value": "icon-and-text",
|
|
},
|
|
Object {
|
|
"key": "portal_button_icon",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "portal_button_signup_text",
|
|
"value": "Subscribe",
|
|
},
|
|
Object {
|
|
"key": "mailgun_domain",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "mailgun_api_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "mailgun_base_url",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "email_track_opens",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "email_verification_required",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "amp",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "amp_gtag_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "labs",
|
|
"value": "{\\"activitypub\\":true,\\"urlCache\\":true,\\"beforeAfterCard\\":true,\\"members\\":true}",
|
|
},
|
|
Object {
|
|
"key": "slack_url",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "slack_username",
|
|
"value": "Ghost",
|
|
},
|
|
Object {
|
|
"key": "unsplash",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "shared_views",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "editor_default_email_recipients",
|
|
"value": "visibility",
|
|
},
|
|
Object {
|
|
"key": "editor_default_email_recipients_filter",
|
|
"value": "all",
|
|
},
|
|
Object {
|
|
"key": "members_enabled",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "members_invite_only",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "paid_members_enabled",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter_account",
|
|
"value": null,
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Browse Can request all settings 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "3361",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Browse Can request settings by group 1: [body] 1`] = `
|
|
Object {
|
|
"meta": Object {
|
|
"filters": Object {
|
|
"group": "theme",
|
|
},
|
|
},
|
|
"settings": Array [
|
|
Object {
|
|
"key": "active_theme",
|
|
"value": "casper",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Browse Can request settings by group 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "91",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Browse Requesting core settings by group ignores the parameter and returns no settings 1: [body] 1`] = `
|
|
Object {
|
|
"meta": Object {
|
|
"filters": Object {
|
|
"group": "core",
|
|
},
|
|
},
|
|
"settings": Array [],
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Browse Requesting core settings by group ignores the parameter and returns no settings 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "51",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Edit Can edit a setting 1: [body] 1`] = `
|
|
Object {
|
|
"meta": Object {},
|
|
"settings": Array [
|
|
Object {
|
|
"key": "title",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "description",
|
|
"value": "Thoughts, stories and ideas",
|
|
},
|
|
Object {
|
|
"key": "logo",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "cover_image",
|
|
"value": "https://static.ghost.org/v4.0.0/images/publication-cover.jpg",
|
|
},
|
|
Object {
|
|
"key": "icon",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "accent_color",
|
|
"value": "#FF1A75",
|
|
},
|
|
Object {
|
|
"key": "locale",
|
|
"value": "ua",
|
|
},
|
|
Object {
|
|
"key": "timezone",
|
|
"value": "Pacific/Auckland",
|
|
},
|
|
Object {
|
|
"key": "codeinjection_head",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "codeinjection_foot",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "facebook",
|
|
"value": "ghost",
|
|
},
|
|
Object {
|
|
"key": "twitter",
|
|
"value": "@ghost",
|
|
},
|
|
Object {
|
|
"key": "navigation",
|
|
"value": "[{\\"label\\":\\"label1\\"}]",
|
|
},
|
|
Object {
|
|
"key": "secondary_navigation",
|
|
"value": "[{\\"label\\":\\"Data & privacy\\",\\"url\\":\\"/privacy/\\"},{\\"label\\":\\"Contact\\",\\"url\\":\\"/contact/\\"},{\\"label\\":\\"Contribute →\\",\\"url\\":\\"/contribute/\\"}]",
|
|
},
|
|
Object {
|
|
"key": "meta_title",
|
|
"value": "SEO title",
|
|
},
|
|
Object {
|
|
"key": "meta_description",
|
|
"value": "SEO description",
|
|
},
|
|
Object {
|
|
"key": "og_image",
|
|
"value": "http://127.0.0.1:2369/content/images/2019/07/facebook.png",
|
|
},
|
|
Object {
|
|
"key": "og_title",
|
|
"value": "facebook title",
|
|
},
|
|
Object {
|
|
"key": "og_description",
|
|
"value": "facebook description",
|
|
},
|
|
Object {
|
|
"key": "twitter_image",
|
|
"value": "http://127.0.0.1:2369/content/images/2019/07/twitter.png",
|
|
},
|
|
Object {
|
|
"key": "twitter_title",
|
|
"value": "twitter title",
|
|
},
|
|
Object {
|
|
"key": "twitter_description",
|
|
"value": "twitter description",
|
|
},
|
|
Object {
|
|
"key": "active_theme",
|
|
"value": "casper",
|
|
},
|
|
Object {
|
|
"key": "is_private",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "password",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "public_hash",
|
|
"value": StringMatching /\\[a-z0-9\\]\\{30\\}/,
|
|
},
|
|
Object {
|
|
"key": "default_content_visibility",
|
|
"value": "public",
|
|
},
|
|
Object {
|
|
"key": "default_content_visibility_tiers",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "members_signup_access",
|
|
"value": "all",
|
|
},
|
|
Object {
|
|
"key": "members_support_address",
|
|
"value": "noreply",
|
|
},
|
|
Object {
|
|
"key": "stripe_secret_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_publishable_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_plans",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_publishable_key",
|
|
"value": "pk_test_for_stripe",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_secret_key",
|
|
"value": "••••••••",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_livemode",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_display_name",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_account_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "members_monthly_price_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "members_yearly_price_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "portal_name",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "portal_button",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "portal_plans",
|
|
"value": "[\\"free\\"]",
|
|
},
|
|
Object {
|
|
"key": "portal_products",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "portal_button_style",
|
|
"value": "icon-and-text",
|
|
},
|
|
Object {
|
|
"key": "portal_button_icon",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "portal_button_signup_text",
|
|
"value": "Subscribe",
|
|
},
|
|
Object {
|
|
"key": "mailgun_domain",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "mailgun_api_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "mailgun_base_url",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "email_track_opens",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "email_verification_required",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "amp",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "amp_gtag_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "labs",
|
|
"value": "{\\"members\\":true}",
|
|
},
|
|
Object {
|
|
"key": "slack_url",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "slack_username",
|
|
"value": "New Slack Username",
|
|
},
|
|
Object {
|
|
"key": "unsplash",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "shared_views",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "editor_default_email_recipients",
|
|
"value": "visibility",
|
|
},
|
|
Object {
|
|
"key": "editor_default_email_recipients_filter",
|
|
"value": "all",
|
|
},
|
|
Object {
|
|
"key": "members_enabled",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "members_invite_only",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "paid_members_enabled",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter_account",
|
|
"value": null,
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Edit Can edit a setting 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "3297",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-cache-invalidate": "/*",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Edit cannot edit uneditable settings 1: [body] 1`] = `
|
|
Object {
|
|
"meta": Object {},
|
|
"settings": Array [
|
|
Object {
|
|
"key": "title",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "description",
|
|
"value": "Thoughts, stories and ideas",
|
|
},
|
|
Object {
|
|
"key": "logo",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "cover_image",
|
|
"value": "https://static.ghost.org/v4.0.0/images/publication-cover.jpg",
|
|
},
|
|
Object {
|
|
"key": "icon",
|
|
"value": "http://127.0.0.1:2369/content/images/size/w256h256/2019/07/icon.png",
|
|
},
|
|
Object {
|
|
"key": "accent_color",
|
|
"value": "#FF1A75",
|
|
},
|
|
Object {
|
|
"key": "locale",
|
|
"value": "ua",
|
|
},
|
|
Object {
|
|
"key": "timezone",
|
|
"value": "Pacific/Auckland",
|
|
},
|
|
Object {
|
|
"key": "codeinjection_head",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "codeinjection_foot",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "facebook",
|
|
"value": "ghost",
|
|
},
|
|
Object {
|
|
"key": "twitter",
|
|
"value": "@ghost",
|
|
},
|
|
Object {
|
|
"key": "navigation",
|
|
"value": "[{\\"label\\":\\"label1\\"}]",
|
|
},
|
|
Object {
|
|
"key": "secondary_navigation",
|
|
"value": "[{\\"label\\":\\"Data & privacy\\",\\"url\\":\\"/privacy/\\"},{\\"label\\":\\"Contact\\",\\"url\\":\\"/contact/\\"},{\\"label\\":\\"Contribute →\\",\\"url\\":\\"/contribute/\\"}]",
|
|
},
|
|
Object {
|
|
"key": "meta_title",
|
|
"value": "SEO title",
|
|
},
|
|
Object {
|
|
"key": "meta_description",
|
|
"value": "SEO description",
|
|
},
|
|
Object {
|
|
"key": "og_image",
|
|
"value": "http://127.0.0.1:2369/content/images/2019/07/facebook.png",
|
|
},
|
|
Object {
|
|
"key": "og_title",
|
|
"value": "facebook title",
|
|
},
|
|
Object {
|
|
"key": "og_description",
|
|
"value": "facebook description",
|
|
},
|
|
Object {
|
|
"key": "twitter_image",
|
|
"value": "http://127.0.0.1:2369/content/images/2019/07/twitter.png",
|
|
},
|
|
Object {
|
|
"key": "twitter_title",
|
|
"value": "twitter title",
|
|
},
|
|
Object {
|
|
"key": "twitter_description",
|
|
"value": "twitter description",
|
|
},
|
|
Object {
|
|
"key": "active_theme",
|
|
"value": "casper",
|
|
},
|
|
Object {
|
|
"key": "is_private",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "password",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "public_hash",
|
|
"value": StringMatching /\\[a-z0-9\\]\\{30\\}/,
|
|
},
|
|
Object {
|
|
"key": "default_content_visibility",
|
|
"value": "public",
|
|
},
|
|
Object {
|
|
"key": "default_content_visibility_tiers",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "members_signup_access",
|
|
"value": "all",
|
|
},
|
|
Object {
|
|
"key": "members_support_address",
|
|
"value": "noreply",
|
|
},
|
|
Object {
|
|
"key": "stripe_secret_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_publishable_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_plans",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_publishable_key",
|
|
"value": "pk_test_for_stripe",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_secret_key",
|
|
"value": "••••••••",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_livemode",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_display_name",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_account_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "members_monthly_price_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "members_yearly_price_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "portal_name",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "portal_button",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "portal_plans",
|
|
"value": "[\\"free\\"]",
|
|
},
|
|
Object {
|
|
"key": "portal_products",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "portal_button_style",
|
|
"value": "icon-and-text",
|
|
},
|
|
Object {
|
|
"key": "portal_button_icon",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "portal_button_signup_text",
|
|
"value": "Subscribe",
|
|
},
|
|
Object {
|
|
"key": "mailgun_domain",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "mailgun_api_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "mailgun_base_url",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "email_track_opens",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "email_verification_required",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "amp",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "amp_gtag_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "labs",
|
|
"value": "{\\"members\\":true}",
|
|
},
|
|
Object {
|
|
"key": "slack_url",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "slack_username",
|
|
"value": "New Slack Username",
|
|
},
|
|
Object {
|
|
"key": "unsplash",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "shared_views",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "editor_default_email_recipients",
|
|
"value": "visibility",
|
|
},
|
|
Object {
|
|
"key": "editor_default_email_recipients_filter",
|
|
"value": "all",
|
|
},
|
|
Object {
|
|
"key": "members_enabled",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "members_invite_only",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "paid_members_enabled",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter_account",
|
|
"value": null,
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Edit cannot edit uneditable settings 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "3364",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Edit removes image size prefixes when setting the icon 1: [body] 1`] = `
|
|
Object {
|
|
"meta": Object {},
|
|
"settings": Array [
|
|
Object {
|
|
"key": "title",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "description",
|
|
"value": "Thoughts, stories and ideas",
|
|
},
|
|
Object {
|
|
"key": "logo",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "cover_image",
|
|
"value": "https://static.ghost.org/v4.0.0/images/publication-cover.jpg",
|
|
},
|
|
Object {
|
|
"key": "icon",
|
|
"value": "http://127.0.0.1:2369/content/images/size/w256h256/2019/07/icon.png",
|
|
},
|
|
Object {
|
|
"key": "accent_color",
|
|
"value": "#FF1A75",
|
|
},
|
|
Object {
|
|
"key": "locale",
|
|
"value": "ua",
|
|
},
|
|
Object {
|
|
"key": "timezone",
|
|
"value": "Pacific/Auckland",
|
|
},
|
|
Object {
|
|
"key": "codeinjection_head",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "codeinjection_foot",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "facebook",
|
|
"value": "ghost",
|
|
},
|
|
Object {
|
|
"key": "twitter",
|
|
"value": "@ghost",
|
|
},
|
|
Object {
|
|
"key": "navigation",
|
|
"value": "[{\\"label\\":\\"label1\\"}]",
|
|
},
|
|
Object {
|
|
"key": "secondary_navigation",
|
|
"value": "[{\\"label\\":\\"Data & privacy\\",\\"url\\":\\"/privacy/\\"},{\\"label\\":\\"Contact\\",\\"url\\":\\"/contact/\\"},{\\"label\\":\\"Contribute →\\",\\"url\\":\\"/contribute/\\"}]",
|
|
},
|
|
Object {
|
|
"key": "meta_title",
|
|
"value": "SEO title",
|
|
},
|
|
Object {
|
|
"key": "meta_description",
|
|
"value": "SEO description",
|
|
},
|
|
Object {
|
|
"key": "og_image",
|
|
"value": "http://127.0.0.1:2369/content/images/2019/07/facebook.png",
|
|
},
|
|
Object {
|
|
"key": "og_title",
|
|
"value": "facebook title",
|
|
},
|
|
Object {
|
|
"key": "og_description",
|
|
"value": "facebook description",
|
|
},
|
|
Object {
|
|
"key": "twitter_image",
|
|
"value": "http://127.0.0.1:2369/content/images/2019/07/twitter.png",
|
|
},
|
|
Object {
|
|
"key": "twitter_title",
|
|
"value": "twitter title",
|
|
},
|
|
Object {
|
|
"key": "twitter_description",
|
|
"value": "twitter description",
|
|
},
|
|
Object {
|
|
"key": "active_theme",
|
|
"value": "casper",
|
|
},
|
|
Object {
|
|
"key": "is_private",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "password",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "public_hash",
|
|
"value": StringMatching /\\[a-z0-9\\]\\{30\\}/,
|
|
},
|
|
Object {
|
|
"key": "default_content_visibility",
|
|
"value": "public",
|
|
},
|
|
Object {
|
|
"key": "default_content_visibility_tiers",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "members_signup_access",
|
|
"value": "all",
|
|
},
|
|
Object {
|
|
"key": "members_support_address",
|
|
"value": "noreply",
|
|
},
|
|
Object {
|
|
"key": "stripe_secret_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_publishable_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_plans",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_publishable_key",
|
|
"value": "pk_test_for_stripe",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_secret_key",
|
|
"value": "••••••••",
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_livemode",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_display_name",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "stripe_connect_account_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "members_monthly_price_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "members_yearly_price_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "portal_name",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "portal_button",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "portal_plans",
|
|
"value": "[\\"free\\"]",
|
|
},
|
|
Object {
|
|
"key": "portal_products",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "portal_button_style",
|
|
"value": "icon-and-text",
|
|
},
|
|
Object {
|
|
"key": "portal_button_icon",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "portal_button_signup_text",
|
|
"value": "Subscribe",
|
|
},
|
|
Object {
|
|
"key": "mailgun_domain",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "mailgun_api_key",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "mailgun_base_url",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "email_track_opens",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "email_verification_required",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "amp",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "amp_gtag_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter_id",
|
|
"value": null,
|
|
},
|
|
Object {
|
|
"key": "labs",
|
|
"value": "{\\"members\\":true}",
|
|
},
|
|
Object {
|
|
"key": "slack_url",
|
|
"value": "",
|
|
},
|
|
Object {
|
|
"key": "slack_username",
|
|
"value": "New Slack Username",
|
|
},
|
|
Object {
|
|
"key": "unsplash",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "shared_views",
|
|
"value": "[]",
|
|
},
|
|
Object {
|
|
"key": "editor_default_email_recipients",
|
|
"value": "visibility",
|
|
},
|
|
Object {
|
|
"key": "editor_default_email_recipients_filter",
|
|
"value": "all",
|
|
},
|
|
Object {
|
|
"key": "members_enabled",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "members_invite_only",
|
|
"value": false,
|
|
},
|
|
Object {
|
|
"key": "paid_members_enabled",
|
|
"value": true,
|
|
},
|
|
Object {
|
|
"key": "firstpromoter_account",
|
|
"value": null,
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API Edit removes image size prefixes when setting the icon 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "3364",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-cache-invalidate": "/*",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API deprecated can do updateMembersEmail 1: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API deprecated can do validateMembersEmailUpdate 1: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "98",
|
|
"content-type": "text/plain; charset=utf-8",
|
|
"location": "http://127.0.0.1:2369/ghost/#/settings/members/?supportAddressUpdate=success",
|
|
"vary": "Origin, Accept, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API stripe connect Can attempt to connect to stripe 1: [body] 1`] = `
|
|
Object {
|
|
"errors": Array [
|
|
Object {
|
|
"code": null,
|
|
"context": "The Stripe Connect token could not be parsed.",
|
|
"details": null,
|
|
"ghostErrorCode": null,
|
|
"help": null,
|
|
"id": StringMatching /\\[a-f0-9\\]\\{8\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{4\\}-\\[a-f0-9\\]\\{12\\}/,
|
|
"message": "Request not understood error, cannot edit setting.",
|
|
"property": null,
|
|
"type": "BadRequestError",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API stripe connect Can attempt to connect to stripe 2: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"content-length": "281",
|
|
"content-type": "application/json; charset=utf-8",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin, Accept-Encoding",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|
|
|
|
exports[`Settings API stripe connect can do disconnectStripeConnectIntegration 1: [headers] 1`] = `
|
|
Object {
|
|
"access-control-allow-origin": "http://127.0.0.1:2369",
|
|
"cache-control": "no-cache, private, no-store, must-revalidate, max-stale=0, post-check=0, pre-check=0",
|
|
"etag": StringMatching /\\(\\?:W\\\\/\\)\\?"\\(\\?:\\[ !#-\\\\x7E\\\\x80-\\\\xFF\\]\\*\\|\\\\r\\\\n\\[\\\\t \\]\\|\\\\\\\\\\.\\)\\*"/,
|
|
"vary": "Origin",
|
|
"x-powered-by": "Express",
|
|
}
|
|
`;
|