Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async function login(idp) {
else
alert(`Logged in as ${session.webId}`);
}
login('https://solid.community');
login('https://solidcommunity.net');
```
Be aware that this will _redirect_ the user away from your application
to their identity provider.
Expand All @@ -100,7 +100,7 @@ then you can use a popup window:
```javascript
async function popupLogin() {
let session = await solid.auth.currentSession();
let popupUri = 'https://solid.community/common/popup.html';
let popupUri = 'https://solidcommunity.net/common/popup.html';
if (!session)
session = await solid.auth.popupLogin({ popupUri });
alert(`Logged in as ${session.webId}`);
Expand Down
2 changes: 1 addition & 1 deletion demo/components/AuthButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default class AuthButtons extends React.Component<Object, Object> {
login() {
const idp = window.prompt(
'What is the URL of your identity provider?',
'https://solid.community/'
'https://solidcommunity.net/'
)
if (idp) {
auth.login(idp)
Expand Down
2 changes: 1 addition & 1 deletion popup-app/idps.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"displayName": "Solid Community",
"url": "https://solid.community/"
"url": "https://solidcommunity.net/"
},
{
"displayName": "Inrupt",
Expand Down