Skip to content

Commit 4f0425b

Browse files
Deploying sosobo.5apps.com
1 parent 9bbf728 commit 4f0425b

4 files changed

Lines changed: 18 additions & 6 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"@context": ["https://www.w3.org/ns/solid/oidc-context.jsonld"],
3+
4+
"client_id": "https://sosobo.5apps.com/clientid.jsonld",
5+
"client_name": "Solid Soukai Bookmarks",
6+
"redirect_uris": ["https://sosobo.5apps.com/"],
7+
"grant_types" : ["refresh_token","authorization_code"],
8+
"response_types" : ["code"],
9+
"default_max_age" : 3600,
10+
"require_auth_time" : true
11+
}

bookmarks/soukai/demo/src/utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ import { BookmarkModel, TopicModel } from "./components/Bookmarks";
3030

3131
export async function doLogin() {
3232
await login({
33-
clientName: "solid-soukai-app",
34-
oidcIssuer: "https://solidcommunity.net",
35-
redirectUrl: window.location.href,
33+
clientName: "solid-soukai-bookmarks",
34+
oidcIssuer: "https://pivot.pondersource.com",
35+
clientId: "sosobo.5apps.com/clientid.jsonld"
3636
});
3737
}
3838

bookmarks/soukai/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
// include this file in your HTML page after including rdflib
12
const FOAF = $rdf.Namespace('http://xmlns.com/foaf/0.1/');
23
const VCARD = $rdf.Namespace('http://www.w3.org/2006/vcard/ns#');
34

4-
export default function getNameFromStore(store, webId) {
5+
function getNameFromStore(store, webId) {
56
return store.any($rdf.sym(webId), FOAF('name')) || store.any($rdf.sym(webId), VCARD('fn'));
67
}

0 commit comments

Comments
 (0)