mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-26 06:26:00 +00:00
21 lines
362 B
JavaScript
21 lines
362 B
JavaScript
function isAuthProxySupported() {
|
|
return false;
|
|
}
|
|
|
|
async function authProxyGetRedirectUrl(options) {
|
|
return null;
|
|
}
|
|
|
|
async function authProxyGetTokenFromCode(options) {
|
|
return null;
|
|
}
|
|
|
|
function startTokenChecking(sid, callback) {}
|
|
|
|
module.exports = {
|
|
isAuthProxySupported,
|
|
authProxyGetRedirectUrl,
|
|
authProxyGetTokenFromCode,
|
|
startTokenChecking,
|
|
};
|