From 917dcf5a5dcd5b7ec7c2c03fe1a613e7b811d001 Mon Sep 17 00:00:00 2001 From: virgil chiriac Date: Tue, 8 Sep 2020 12:48:19 +0200 Subject: [PATCH 1/3] SC-6701 - update ghost API url (mint-ec) --- src/store/ghost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/ghost.js b/src/store/ghost.js index 2759376027..25182cc629 100644 --- a/src/store/ghost.js +++ b/src/store/ghost.js @@ -2,7 +2,7 @@ import GhostContentAPI from "@tryghost/content-api"; // Create API instance with site credentials const api = new GhostContentAPI({ - url: "https://headless.schul-cloud.org", + url: "https://headless.hpi-schul-cloud.org", key: "dbb2b07bb370c4264bbadebbc1", version: "v2", }); From 107f2cf9d47423be25f696698e3ebe8f5d3b0b9a Mon Sep 17 00:00:00 2001 From: virgil chiriac Date: Tue, 8 Sep 2020 12:55:40 +0200 Subject: [PATCH 2/3] bump version --- CHANGELOG.md | 4 ++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fe604bd0a..2b6d8f7fd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ Allowed Types of change: `Added`, `Changed`, `Deprecated`, `Removed`, `Fixed`, ` ## Unreleased +## [24.4.1] - 2020-09-08 + +- SC-6701 - changed domain for ghost (mint-ec pages) + ## [24.4.0] - 2020-08-31 ## [24.3.0] - 2020-08-25 diff --git a/package-lock.json b/package-lock.json index cd115adf9b..778abcd72e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "schulcloud-nuxt", - "version": "24.4.0", + "version": "24.4.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0399532d4d..73a84e0bd8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "schulcloud-nuxt", - "version": "24.4.0", + "version": "24.4.1", "description": "The next Level of HPI Schul-Cloud", "author": "HPI Schul-Cloud", "private": true, From 4fcecd580c17071e734b63beea5eac73aaef445a Mon Sep 17 00:00:00 2001 From: virgil chiriac Date: Tue, 8 Sep 2020 13:01:50 +0200 Subject: [PATCH 3/3] SC-6701 - fixes url --- src/store/ghost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/ghost.js b/src/store/ghost.js index 25182cc629..85359784bc 100644 --- a/src/store/ghost.js +++ b/src/store/ghost.js @@ -2,7 +2,7 @@ import GhostContentAPI from "@tryghost/content-api"; // Create API instance with site credentials const api = new GhostContentAPI({ - url: "https://headless.hpi-schul-cloud.org", + url: "https://headless.hpi-schul-cloud.de", key: "dbb2b07bb370c4264bbadebbc1", version: "v2", });