From cbc1492e5114881a952a32dae2f785ca678136bb Mon Sep 17 00:00:00 2001 From: F-Node-Karlsruhe Date: Tue, 23 Jul 2024 12:55:35 +0200 Subject: [PATCH] fix api url Signed-off-by: F-Node-Karlsruhe --- CHANGELOG.md | 4 ++++ api/package.json | 2 +- frontend/package.json | 2 +- frontend/src/api.js | 2 +- frontend/src/store/index.js | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7347d2d..331a264 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ VC Verifier Changelog WIP --- +2.0.2 (2024-07-23) + +- fix api url + 2.0.1 (2024-07-23) - fix show version diff --git a/api/package.json b/api/package.json index f48e676..9334207 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "vc-verifier", - "version": "2.0.1", + "version": "2.0.2", "description": "The EECC verifier for verifiable credentials which provides an verification API as well as the corresponding UI.", "main": "index.js", "type": "module", diff --git a/frontend/package.json b/frontend/package.json index 270319d..ead6710 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "verifier_frontend", - "version": "2.0.1", + "version": "2.0.2", "description": "Vue frontend for the EECC vc verifier API", "scripts": { "build": "vue-cli-service build", diff --git a/frontend/src/api.js b/frontend/src/api.js index d9d5bd5..e067c0b 100644 --- a/frontend/src/api.js +++ b/frontend/src/api.js @@ -1,6 +1,6 @@ import axios from 'axios' const axiosInstance = axios.create({ - baseURL: process.env.VERIFIER_API || 'http://localhost:3000/api/verifier', + baseURL: process.env.VERIFIER_API || 'https://ssi.eecc.de/api/verifier', timeout: 5000, headers: { 'Accept': 'application/ld+json,application/json,*/*' diff --git a/frontend/src/store/index.js b/frontend/src/store/index.js index a0deb69..a11b6b4 100644 --- a/frontend/src/store/index.js +++ b/frontend/src/store/index.js @@ -5,7 +5,7 @@ import api from '../api' export default createStore({ state: { - version: '2.0.1', + version: '2.0.2', authentication: undefined, verifiables: [], disclosedCredentials: [],