mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Change URL for download count service
no issue - we're moving the internal endpoint for fetching counts to count.ghost.org
This commit is contained in:
parent
7bb153a372
commit
18dc0e3bc5
2 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ export default function () {
|
||||||
/* Download Count ------------------------------------------------------- */
|
/* Download Count ------------------------------------------------------- */
|
||||||
|
|
||||||
let downloadCount = 0;
|
let downloadCount = 0;
|
||||||
this.get('http://ghost.org/count/', function () {
|
this.get('https://count.ghost.org/', function () {
|
||||||
downloadCount++;
|
downloadCount++;
|
||||||
return {
|
return {
|
||||||
count: downloadCount
|
count: downloadCount
|
||||||
|
|
|
@ -28,7 +28,7 @@ export default function () {
|
||||||
apiRoot,
|
apiRoot,
|
||||||
subdir,
|
subdir,
|
||||||
blogRoot: `${subdir}/`,
|
blogRoot: `${subdir}/`,
|
||||||
count: 'https://ghost.org/count/',
|
count: 'https://count.ghost.org/',
|
||||||
|
|
||||||
url: {
|
url: {
|
||||||
admin() {
|
admin() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue