Skip to content

Commit 556503a

Browse files
Update Solid Community url (#170)
* Update Solid Community url in idps.json * Update Solid Community URL in readme * Update Solid Community URL in demo
1 parent 89b62df commit 556503a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async function login(idp) {
8989
else
9090
alert(`Logged in as ${session.webId}`);
9191
}
92-
login('https://solid.community');
92+
login('https://solidcommunity.net');
9393
```
9494
Be aware that this will _redirect_ the user away from your application
9595
to their identity provider.
@@ -100,7 +100,7 @@ then you can use a popup window:
100100
```javascript
101101
async function popupLogin() {
102102
let session = await solid.auth.currentSession();
103-
let popupUri = 'https://solid.community/common/popup.html';
103+
let popupUri = 'https://solidcommunity.net/common/popup.html';
104104
if (!session)
105105
session = await solid.auth.popupLogin({ popupUri });
106106
alert(`Logged in as ${session.webId}`);

demo/components/AuthButtons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default class AuthButtons extends React.Component<Object, Object> {
1717
login() {
1818
const idp = window.prompt(
1919
'What is the URL of your identity provider?',
20-
'https://solid.community/'
20+
'https://solidcommunity.net/'
2121
)
2222
if (idp) {
2323
auth.login(idp)

popup-app/idps.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"displayName": "Solid Community",
4-
"url": "https://solid.community/"
4+
"url": "https://solidcommunity.net/"
55
},
66
{
77
"displayName": "Inrupt",

0 commit comments

Comments
 (0)