mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1) Added support for authentication via the web server (REMOTE_USER). Fixes #6657
2) Fixed OAuth2 integration redirect issue. Fixes #6719 Initial patch for 6657 sent by: Tom Schreiber
This commit is contained in:
committed by
Akshay Joshi
parent
ca40add29b
commit
a726635290
@@ -55,12 +55,14 @@ ERROR_FETCHING_DATA = gettext('Unable to fetch data.')
|
||||
INTERNAL = 'internal'
|
||||
LDAP = 'ldap'
|
||||
KERBEROS = 'kerberos'
|
||||
OAUTH2 = "oauth2"
|
||||
OAUTH2 = 'oauth2'
|
||||
WEBSERVER = 'webserver'
|
||||
|
||||
SUPPORTED_AUTH_SOURCES = [INTERNAL,
|
||||
LDAP,
|
||||
KERBEROS,
|
||||
OAUTH2]
|
||||
OAUTH2,
|
||||
WEBSERVER]
|
||||
|
||||
BINARY_PATHS = {
|
||||
"as_bin_paths": [
|
||||
|
||||
Reference in New Issue
Block a user