azure auth - moved from plugin into API

This commit is contained in:
Jan Prochazka
2024-08-08 10:30:39 +02:00
parent a9352f2a93
commit 9132bfb656
7 changed files with 47 additions and 31 deletions

View File

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