diff --git a/src/routes.js b/src/routes.js index 71bea40c..e8e3d85a 100644 --- a/src/routes.js +++ b/src/routes.js @@ -98,7 +98,8 @@ module.exports = async ( logger.info('Received API status!', APIStatus) return { LNDStatus, - APIStatus + APIStatus, + deploymentType: process.env.DEPLOYMENT_TYPE || 'non-wizard' } } catch (err) { logger.error(err) @@ -110,7 +111,8 @@ module.exports = async ( logger.warn('Failed to retrieve API status', APIStatus) return { LNDStatus, - APIStatus + APIStatus, + deploymentType: process.env.DEPLOYMENT_TYPE || 'non-wizard' } } }