Skip to content

Commit

Permalink
enabled language selection navbar dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
nexovec committed Jul 22, 2024
1 parent 4e2722d commit f9f802b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions docker/pythonpath_dev/superset_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class CeleryConfig:
# Enable OAuth authentication
AUTH_TYPE = AUTH_OAUTH
LOGOUT_REDIRECT_URL = (
"http://localhost:8080/realms/etikos/protocol/openid-connect/logout"
"http://192.168.27.55/realms/etikos/protocol/openid-connect/logout"
)
# AUTH_USER_REGISTRATION_ROLE = 'Admin'
AUTH_USER_REGISTRATION = True
Expand All @@ -164,9 +164,13 @@ class CeleryConfig:
"client_kwargs": {
"scope": "openid profile email",
},
"server_metadata_url": "http://localhost:8080/realms/etikos/.well-known/openid-configuration",
"api_base_url": "http://localhost:8080/realms/etikos/protocol/",
"redirect_uri": "http://192.168.27.207:8088/login/callback/keycloak"
"server_metadata_url": "http://192.168.27.55/realms/etikos/.well-known/openid-configuration",
"api_base_url": "http://192.168.27.55/realms/etikos/protocol/",
},
}
]

LANGUAGES = {
"en":{"flag":"us", "name": "English"},
"cs":{"flag":"cz", "name": "Čeština"}
}

0 comments on commit f9f802b

Please sign in to comment.