From af3bc288dc4ecae42565a7115d8d773a06f00cf1 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Tue, 9 Feb 2016 10:20:24 +0000 Subject: [PATCH] Change URL for download count service no issue - we're moving the internal endpoint for fetching counts to count.ghost.org --- ghost/admin/app/mirage/config.js | 2 +- ghost/admin/app/utils/ghost-paths.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ghost/admin/app/mirage/config.js b/ghost/admin/app/mirage/config.js index f6c0586e26..6a1efb6c6d 100644 --- a/ghost/admin/app/mirage/config.js +++ b/ghost/admin/app/mirage/config.js @@ -90,7 +90,7 @@ export default function () { /* Download Count ------------------------------------------------------- */ let downloadCount = 0; - this.get('http://ghost.org/count/', function () { + this.get('https://count.ghost.org/', function () { downloadCount++; return { count: downloadCount diff --git a/ghost/admin/app/utils/ghost-paths.js b/ghost/admin/app/utils/ghost-paths.js index 671c8c67aa..5be07bb682 100644 --- a/ghost/admin/app/utils/ghost-paths.js +++ b/ghost/admin/app/utils/ghost-paths.js @@ -28,7 +28,7 @@ export default function () { apiRoot, subdir, blogRoot: `${subdir}/`, - count: 'https://ghost.org/count/', + count: 'https://count.ghost.org/', url: { admin() {