Skip to content

Commit

Permalink
misc: small changes before screencast
Browse files Browse the repository at this point in the history
  • Loading branch information
Dexagod committed May 22, 2024
1 parent 68f7f7b commit 9a96c76
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion demo/backend/store/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ app.get('/id', async (req,res)=>{
foaf:maker <${webId}>;
foaf:primaryTopic <${webId}>.
<${webId}> a foaf:Organization;
foaf:name "De Buurtwinkel".`
foaf:name "The Drinks Center".`

res.status(200)
res.contentType('text/turtle')
Expand Down
2 changes: 1 addition & 1 deletion demo/sites/auditingsite/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Auditing Interface</title>
<title>Auto Auditing Platform</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
2 changes: 1 addition & 1 deletion demo/sites/auditingsite/src/components/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface StoreInfo {
}

const stores: StoreInfo[] = [{
name: "De Buurtwinkel",
name: "The Drinks Center",
site: "http://localhost:5002/",
audit: "http://localhost:5123/audit",
logo: "store.jpg"
Expand Down
2 changes: 1 addition & 1 deletion demo/sites/updatedstore/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>De Buurtwinkel</title>
<title>The Drinks Center</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ const AuthModal = (props: any) => {
Select WebID
</Typography>
<Typography id="transition-modal-title" variant="subtitle2" component="h2">
The store will negotiate your age data with your data space for the purpose of age verification.
The WebID will be used to negotiate access to your age<br />
for the purpose of age verification.
</Typography>
<br />
{ props.error
Expand Down
2 changes: 1 addition & 1 deletion packages/uma/src/tokens/JwtTokenFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class JwtTokenFactory extends TokenFactory {
.setJti(v4())
.sign(jwk);

this.logger.debug('Issued new JWT Token', token);
this.logger.debug('Issued new JWT Token', JSON.stringify(token, null, 2));
return {token: jwt, tokenType: 'Bearer'};
}

Expand Down

0 comments on commit 9a96c76

Please sign in to comment.