Merge 573fe416b04b2e9beaadb65e3b929f537736a137 into fdb22e467b03ebf9257476dae8a4776badefb7e5

This commit is contained in:
jakefrancois5 2024-10-17 01:55:01 +00:00 committed by GitHub
commit d75336baf0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,6 +34,18 @@ class ProxyHost extends Model {
if (typeof this.openidc_auth_method === 'undefined') { if (typeof this.openidc_auth_method === 'undefined') {
this.openidc_auth_method = 'client_secret_post'; this.openidc_auth_method = 'client_secret_post';
} }
if (typeof this.openidc_redirect_uri === 'undefined') {
this.openidc_redirect_uri = '';
}
if (typeof this.openidc_discovery === 'undefined') {
this.openidc_discovery = '';
}
if (typeof this.openidc_client_id === 'undefined') {
this.openidc_client_id = '';
}
if (typeof this.openidc_client_secret === 'undefined') {
this.openidc_client_secret = '';
}
this.domain_names.sort(); this.domain_names.sort();
this.openidc_allowed_users.sort(); this.openidc_allowed_users.sort();