diff --git a/packages/api/src/utility/authProxy.js b/packages/api/src/utility/authProxy.js index 58984a664..060cc7f74 100644 --- a/packages/api/src/utility/authProxy.js +++ b/packages/api/src/utility/authProxy.js @@ -40,6 +40,12 @@ function getLicenseHttpHeaders() { return {}; } +async function tryToGetRefreshedLicense(oldLicenseKey) { + return { + status: 'error', + }; +} + module.exports = { isAuthProxySupported, authProxyGetRedirectUrl, @@ -52,4 +58,5 @@ module.exports = { callCompleteOnCursorApi, callRefactorSqlQueryApi, getLicenseHttpHeaders, + tryToGetRefreshedLicense, };