Skip to content

Commit ae99c39

Browse files
committed
Merge branch 'solid-org'
Remove github dependencies (direct and indirect).
2 parents 938cb9d + 89c90fc commit ae99c39

File tree

9 files changed

+306
-375
lines changed

9 files changed

+306
-375
lines changed

Diff for: README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
### Install
2525

26-
You can install and run the server either using Node.js directly or using
27-
[Docker](https://www.docker.com/). This and the following sections describe the
26+
You can install and run the server either using Node.js directly or using
27+
[Docker](https://www.docker.com/). This and the following sections describe the
2828
first approach, for the second approach see the section [use Docker](#use-docker)
2929
Section below.
3030

@@ -306,7 +306,7 @@ In order to really get a feel for the Solid platform, and to test out `solid`,
306306
you will need the following:
307307

308308
1. A WebID profile and browser certificate from one of the Solid-compliant
309-
identity providers, such as [databox.me](https://databox.me).
309+
identity providers, such as [solid.community](https://solid.community).
310310

311311
2. A server-side SSL certificate for `solid` to use (see the section below
312312
on creating a self-signed certificate for testing).
@@ -409,6 +409,12 @@ npm run test-(acl|formats|params|patch)
409409
<td><a href="https://twitter.com/KKjernsmo">Twitter/@KKjernsmo</a></td>
410410
<td><a href="https://solid.kjernsmo.net/profile/card#me">WebID</a></td>
411411
</tr>
412+
<tr>
413+
<th align="left">Justin Bingham</th>
414+
<td><a href="https://github.com/justinwb">GitHub/justinwb</a></td>
415+
<td><a href="https://twitter.com/justinwb">Twitter/@justinwb</a></td>
416+
<td><a href="https://justin.janeirodigital.exchange/profile/card#me">WebID</a></td>
417+
</tr>
412418
</tbody>
413419
</table>
414420

Diff for: lib/api/authn/webid-oidc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const PasswordChangeRequest = require('../../requests/password-change-request')
1414
const {
1515
AuthCallbackRequest,
1616
LogoutRequest
17-
} = require('oidc-auth-manager').handlers
17+
} = require('@solid/oidc-auth-manager').handlers
1818

1919
/**
2020
* Sets up OIDC authentication for the given app.

Diff for: lib/models/authenticator.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
const debug = require('./../debug').authentication
44
const validUrl = require('valid-url')
55
const webid = require('webid/tls')
6-
const provider = require('oidc-auth-manager/src/preferred-provider')
7-
const { domainMatches } = require('oidc-auth-manager/src/oidc-manager')
6+
const provider = require('@solid/oidc-auth-manager/src/preferred-provider')
7+
const { domainMatches } = require('@solid/oidc-auth-manager/src/oidc-manager')
88

99
/**
1010
* Abstract Authenticator class, representing a local login strategy.

Diff for: lib/models/oidc-manager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const url = require('url')
44
const path = require('path')
55
const debug = require('../debug').authentication
66

7-
const OidcManager = require('oidc-auth-manager')
7+
const OidcManager = require('@solid/oidc-auth-manager')
88

99
/**
1010
* Returns an instance of the OIDC Authentication Manager, initialized from

0 commit comments

Comments
 (0)