Skip to content

Commit 16be06e

Browse files
committed
update of mashlib imports
1 parent 163462f commit 16be06e

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
/data
1515
/coverage
1616
/node_modules
17-
/npm-debug.log
17+
/npm-debug.log
18+
.history/

bin/config.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"root": "/Users/imyshor/Projects/solid/solidos/workspaces/node-solid-server/bin/data",
3+
"port": "8443",
4+
"serverUri": "https://localhost:8443",
5+
"webid": false,
6+
"mount": "/",
7+
"configPath": "./config",
8+
"configFile": "./config.json",
9+
"dbPath": "./.db",
10+
"sslKey": "../",
11+
"sslCert": "../",
12+
"multiuser": false,
13+
"server": {
14+
"name": "localhost",
15+
"description": "",
16+
"logo": ""
17+
}
18+
}

common/js/index-buttons.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ function register() {
44
alert(2); window.location.href = "/register";
55
}
66
document.addEventListener('DOMContentLoaded', async function() {
7-
const solidLogicLib = UI.solidLogicLib
8-
const authn = solidLogicLib.authn
9-
const authSession = solidLogicLib.authSession
7+
const authn = UI.authn
8+
const authSession = UI.authSession
109

1110
if (!authn.currentUser()) await authn.checkUser();
1211
let user = authn.currentUser();

0 commit comments

Comments
 (0)