azure auth moved to auth proxy

This commit is contained in:
Jan Prochazka
2024-08-13 13:24:34 +02:00
parent 63cdb4e507
commit 838bc34a4f
8 changed files with 33 additions and 42 deletions

View File

@@ -0,0 +1,17 @@
function isAuthProxySupported() {
return false;
}
async function authProxyGetRedirectUrl(options) {
return null;
}
async function authProxyGetTokenFromCode(options) {
return null;
}
module.exports = {
isAuthProxySupported,
authProxyGetRedirectUrl,
authProxyGetTokenFromCode,
};

View File

@@ -1,17 +0,0 @@
function isAzureAuthSupported() {
return false;
}
async function azureGetRedirectAuthUrl(options) {
return null;
}
async function azureGetAuthTokenFromCode(options) {
return null;
}
module.exports = {
isAzureAuthSupported,
azureGetRedirectAuthUrl,
azureGetAuthTokenFromCode,
};