Skip to content
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.

Commit

Permalink
small fix for mobile demo handling
Browse files Browse the repository at this point in the history
  • Loading branch information
nataschaberg committed Nov 21, 2018
1 parent f17ebe5 commit c56f5b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const configureRoutes = async (app: Express, redisApi: RedisApi, iw: Iden
try {
const credentialOfferRequest = await iw.create.interactionTokens.request.offer(
{
callbackURL: 'demosso://credentialoffer/',
callbackURL: `${serviceUrl}/credentialReceive/`,
instant: true,
requestedInput: {}
},
Expand Down
7 changes: 5 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"types":["node"],
"baseUrl": ".",
"outDir": "./build/",
"module": "commonjs",
"module": "es2015",
"target": "es2017",
"lib": ["dom", "es2017"],
"sourceMap": true,
Expand All @@ -25,6 +25,9 @@
"acceptance-tests",
"webpack",
"jest",
"src"
"src/setupTests.ts"
],
"include": [
"./src/**/*"
]
}

0 comments on commit c56f5b4

Please sign in to comment.