Skip to content

Commit

Permalink
fix api url
Browse files Browse the repository at this point in the history
Signed-off-by: F-Node-Karlsruhe <christian.fries@eecc.de>
  • Loading branch information
F-Node-Karlsruhe committed Jul 23, 2024
1 parent 118bafe commit cbc1492
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/api.js
Original file line number Diff line number Diff line change
@@ -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,*/*'
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import api from '../api'

export default createStore({
state: {
version: '2.0.1',
version: '2.0.2',
authentication: undefined,
verifiables: [],
disclosedCredentials: [],
Expand Down

0 comments on commit cbc1492

Please sign in to comment.