Skip to content

Commit

Permalink
Update moved client_id logo_uri paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Vidminas committed Apr 22, 2024
1 parent 7f39db5 commit dd55e09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/chat_app/data/client_id.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"@context": ["https://www.w3.org/ns/solid/oidc-context.jsonld"],

"client_id": "https://raw.githubusercontent.com/Vidminas/socialgenpod/main/chat_app/data/client_id.json",
"client_id": "https://raw.githubusercontent.com/Vidminas/socialgenpod/main/src/chat_app/data/client_id.json",
"client_name": "Social Gen Pod",
"client_uri": "https://github.com/Vidminas/socialgenpod",
"logo_uri" : "https://raw.githubusercontent.com/Vidminas/socialgenpod/main/chat_app/data/turtle.png",
"logo_uri" : "https://raw.githubusercontent.com/Vidminas/socialgenpod/main/src/chat_app/data/turtle.png",
"tos_uri" : "https://github.com/Vidminas/socialgenpod/blob/main/README.md",
"redirect_uris": ["https://socialgenpod.ryey.icu/callback", "https://socialgenpod.azurewebsites.net/callback", "http://localhost:8501/callback"],
"post_logout_redirect_uris": ["https://socialgenpod.ryey.icu", "https://socialgenpod.azurewebsites.net", "http://localhost:8501"],
Expand Down
2 changes: 1 addition & 1 deletion src/chat_app/solid_oidc_button.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_callback_uri():

class SolidOidcComponent(OAuth2Component):
def __init__(self, solid_server_url: str):
self.client_id = "https://raw.githubusercontent.com/Vidminas/socialgenpod/main/chat_app/data/client_id.json"
self.client_id = "https://raw.githubusercontent.com/Vidminas/socialgenpod/main/src/chat_app/data/client_id.json"
self.client_secret = None

client = SolidOidcClient(storage=MemStore())
Expand Down

0 comments on commit dd55e09

Please sign in to comment.